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'm using the Facebook C# SDK and trying to authenticate my user. The first part sort of worked, my app showed me the facebook login page inside a browser control.

This is the code I have, I was following this example.

    private readonly FacebookClient _fb = new FacebookClient();

    private void Browser_Loaded(object sender, RoutedEventArgs e)
    {
        var loginUrl = GetFacebookLoginUrl();
        BrowserControl.Navigate(loginUrl);
    }

    private Uri GetFacebookLoginUrl()
    {
        var parameters = new Dictionary<string, object>();
        parameters["client_id"] = FacebookSettings.AppID;
        parameters["redirect_uri"] = "https://www.facebook.com/connect/login_success.html";
        parameters["response_type"] = "token";
        parameters["display"] = "page";

        if (!string.IsNullOrEmpty(FacebookSettings.ExtendedPermissions))
            parameters["scope"] = FacebookSettings.ExtendedPermissions;

        return _fb.GetLoginUrl(parameters);
    }

After I filled in my details to log into facebook, I got this error:

enter image description here

Any idea's which method is depricated and how I can fix this?

share|improve this question
1  
The blog you're referring to is mine, and this code works for me in emulator, test app and the app I have published on the Marketplace (Photo Light). The cause may be if you're using parameters["display"] = "touch"; anywhere when communicating with Facebook. – igrali Jun 17 '12 at 20:49
I was originally trying with display set to touch. It still didn't work after switching to page but restarting VS fixed the problem. – Sled Jun 17 '12 at 21:54
Great, glad it works for you now! ;) – igrali Jun 21 '12 at 9:26

1 Answer

up vote 0 down vote accepted

I used the same code and it's working. And such an error is occuring because of a bug in the facebook API, when display parameter is set to "touch" or "wap". That shouldn't occur when using "page". Try using "popup" as the display.

Try changing the july 2012 Breaking Changes in the app's advanced settings tab(in developer.facebook.com). Refer to this link for information on this issue. And similar issue in facebook developer site.

share|improve this answer

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.