Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
“But this code doesnt realy serve my purpose.” – and what is your purpose? Login to any Facebook app is supposed to be done via OAuth. Users giving their login details to a third party is highly discouraged. – CBroe Mar 11 at 12:17
i understand the point that "Users giving their login details to a third party is highly discouraged". But what i wana do is jus test if my URL is working dynamically. And m not going to ask user to give any details. I m using my own details to check it. i jus need to automate that – pirate-eir Mar 12 at 11:57

1 Answer

You cannot skip the process altogether. But getting an access token from Facebook API can work for you, Please read about it here : http://developers.facebook.com/docs/concepts/login/access-tokens-and-types/

share|improve this answer
i have looked into that. But the access token is to be retrieved for an app. If i want to retrive it for the user than i need to login through the facebook login page, that means again user intervention is needed. – pirate-eir Mar 12 at 15:57
the point here is if facebook deprecates that URL which we are using than, wen my site redirects for facebook login it would coz an error and oso incovinience to the users of my site; until i start getting complains and then rectify the URL. I dont want that. What i want is if facebook adopts any changes in respect to the URL i get to know it instantly. So i need this app which cud be trigger on timely basis and create a log file of status's. So when i see the log file i know... – pirate-eir Mar 12 at 16:03
You'd need to log in the user at least once to facebook via your app, to get the access token..its inevitable – Haider Mar 14 at 9:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.