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.

In my Facebook application, I am requesting 3 scopes: email,publish_stream,publish_action

I am using the FB.login function. These 2 steps pop up.

When the user clicks "Cancel" in the first step, FB.login will show "status: unknown" as the response object.

However, when user clicks cancel in the second step, FB.login shows it as "status:connected" and treats it as if the user accepted everything.

How does my app determine if the user denied the 2nd step?


enter image description here enter image description here

share|improve this question

2 Answers

you can do this via the graph api:

FB.api('/me/permissions', function (response) {
    console.log(response);
} );

example:

{
    data: [
        {
            create_note: 1,
            installed: 1,
            photo_upload: 1,
            publish_stream: 1,
            share_item: 1,
            status_update: 1,
            video_upload: 1,
        }
    ]
}

see http://developers.facebook.com/docs/reference/api/user/

share|improve this answer
But let's assume that the user denied that 2nd step. How do I make the user "Allow" that again? Can I pop up a new dialog for that? – TIMEX Apr 6 '12 at 6:19
yes, just do as you initial do, all rights the user has not given you already are requested. – Rufinus Apr 6 '12 at 7:38

Use Users.hasAppPermission to check if a user has those permissions.

See : http://developers.facebook.com/docs/?u=facebook.jslib.FB.ApiClient.users_hasAppPermission

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.