Loading my facebook page in a tab shows following error:

 FB.Auth.setAuthResponse only compatible with OAuth2.

I use oauth parameter like this:

FB.init({
    appId: fbAppId,
    status: true,
    cookie: true,
    xfbml: false,
    oauth: true
});

Am I doing something wrong ?

link|improve this question

25% accept rate
1  
Found bug reported the issue here: developers.facebook.com/bugs/223807541010560 – sensor Sep 26 '11 at 6:45
Got the same problem. Disabled social-plugin like button -> everything works fine. But I need this Like button, so tried XFBML and got mistake again. FB.Auth.setAuthResponse only compatible with OAuth2. idk what to think what to do, anybody solve this prob? – 265 Oct 10 '11 at 12:38
1  
In the official bug report when you include the FB SDK library you sould NOT include any parameters. Social plugins add this params automaticly. For example: all.js#appId=157300431029312&xfbml=1 Try removing them – sensor Oct 10 '11 at 13:00
i have no social plugins and have "Encrypted Access Token" enabled and I STILL get this error. – Kendall Oct 17 '11 at 20:39
feedback

6 Answers

  1. Log in to the Facebook account that is in charge of the App.
  2. Go to https://developers.facebook.com/apps/ and click on the App in question.
  3. In the left menu, under Settings, click Advanced and look at the settings in the Migrations section.

I encountered this issue on a test environment of mine, and switched the "Encrypted Access Token" setting to 'Enabled' and it seems to resolve the issue for me. I did all this code work for the migration but had NO IDEA that I had to go into the App and mess with settings.

HTH

link|improve this answer
feedback

i have all these setting enable, but i still get the error. Below is my code:

<script src="http://connect.facebook.net/en_US/all.js"></script>
<script language="javascript">
FB.init({
        appId  : applicationID,
        status : true, // check login status
        cookie : true, // enable cookies to allow the server to access the session
        xfbml : true,  // parse XFBML
        oauth : true // enables OAuth 2.0
    });
FB.getLoginStatus(function(response) {
    console.log(response);
    if (response.authResponse) {
    user_id = response.authResponse.userID;
    accessToken = response.authResponse.accessToken;
    FB.api({
        access_token: accessToken ,
        method: 'fql.query',
        query: 'SELECT uid FROM page_fan WHERE uid='+user_id+' AND page_id='+pageID
    }, function(resp) {
        if (resp.length) {
        top.location.href = applicationUrl
        } else {
        document.getElementById("princess-container").style.display = 'block';
        }
    }
);
} else {
    oauthoriseApplication();
}
});

FB.Event.subscribe('edge.create', function(response) {


top.location.href = applicationUrl

});

link|improve this answer
Why do you manually set the access token ? "access_token: accessToken" FB.api will set it for you. – sensor Oct 8 '11 at 19:46
feedback

Some Facebook social plugins(the ones that require actually inserting JavaScript) have their own authentication scheme. The newly implemented Add To Timeline button is one example of a social plugin that will cause this error to appear in your JS console. Try removing social plugins and see if the error persists. If they disappear, your only real option is to switch to XFBML.

link|improve this answer
feedback

when using outh 2 add oauth=1 to provided js function for social plugins

<script>(function(d, s, id) {
  var js, fjs = d.getElementsByTagName(s)[0];
  if (d.getElementById(id)) {return;}
  js = d.createElement(s); js.id = id;
  js.src = "//connect.facebook.net/tr_TR/all.js#**oauth=1**&xfbml=1&appId=164442023647373";
  fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
link|improve this answer
feedback

i had this error when using

ow.fbAsyncInit = function() {
    FB.init({
        appId   : '<s:property value="app_id" />',
        status  : true, // check login status
        cookie  : true, // enable cookies to allow the server to access the session
        xfbml   : true,  // parse XFBML
        oauth   : true
    });

Old variables i used:

response.session.access_token
response.session.uid

New variables helped:

response.authResponse.accessToken
response.authResponse.userId
link|improve this answer
feedback

remove the parameters from your JDK include:

script src="http://connect.facebook.net/en_US/all.js"
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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