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 am developing a functionality to allow facebook users to register in our web application. The approach is:

  1. We will create one app on facebook
  2. Facebook authentication plugin (http://developers.facebook.com/docs/guides/web/#login) will be used in our registration page.
  3. When user clicks on facebook button, facebook login page and then app authorization page are shown.
  4. One user allows/disallows facebook app, user will be redirected to a particular page within our website.

I am not able to find a proper even handler to capture app authorization (allow/disallow event) to redirect user. Can someone help me with this?

share|improve this question

1 Answer

up vote 0 down vote accepted

Using the JS SDK:

FB.login(function(response) {
    if (response.status=="connected") {
        // authorized the app
    } else {
        // did not authorized the app
    }
}, {
    perms: 'email'
});

Trigger a call to this function when the user click the button.

<div class="fb-login-button">Login</div>
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.