I have been given a Facebook oauth URL and I'm supposed to be using it to login to facebook for authorization purposes.
Now I have got the code to do this using DotNetOpenAuth and it works fine.
But the problem now is that, a user step-in required to authorize. If I already have the login id and password of the user then how can I automate the user authorization process without user interaction required?
using DotNetOpenAuth.ApplicationBlock;
using DotNetOpenAuth.ApplicationBlock.Facebook;
using DotNetOpenAuth.OAuth2;
...
private static readonly FacebookClient client = new FacebookClient
{
ClientIdentifier = ConfigurationManager.AppSettings["facebookAppID"],
ClientSecret = ConfigurationManager.AppSettings["facebookAppSecret"],
};
...
public ActionResult LoginToFacebook()
{
IAuthorizationState authorization = client.ProcessUserAuthorization();
if (authorization == null)
{
// Kick off authorization request
client.RequestUserAuthorization();
}
else
{
var request = WebRequest.Create("https://graph.facebook.com/me?access_token=" + Uri.EscapeDataString(authorization.AccessToken));
using (var response = request.GetResponse())
{
using (var responseStream = response.GetResponseStream())
{
var graph = FacebookGraph.Deserialize(responseStream);
ViewBag.Message = HttpUtility.HtmlEncode(graph.Name);
}
}
}
...
But this code doesnt realy serve my purpose.
I need a code that wud let me test the URL against the credentials . And it should be automated. So that i dnt have to test it all the time... i can have a log file o something.
The URL i have is something like this: http://www.facebook.com/dialog/oauth?client_id=...&scope=publish_stream,offline_access&enable_profile_selector=1&redirect_uri=...
Is there any other workaround to this?
