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 a problem with "Login with Facebook" button. I have a web app that requires several information for log in, inclusive many information that facebook does not have. Because of that I'm also using the Registration Plugin, but that is not the matter in this question.

What happens is, when i am logged in facebook, the window that should ask for permission opens and closes without doing anything at all. According the documentation it should ask for permission and show me the data i am sending to the app.

When i am not logged, the same window shows a facebook form for a facebook login. So far so good. When I fill, logs me into facebook and closes. In here I think it's about Registration matter. Right? Thats for another question I think.

here is the code:

<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
  appId      : '162133370592443', // App ID
  channelUrl : '//www.parceria.com/channel.html', // Channel File
  status     : true, // check login status
  cookie     : true, // enable cookies to allow the server to access the session
  xfbml      : true,  // parse XFBML
});
 // Additional initialization code here
  // Load the SDK Asynchronously
 (function(d){
 var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
 if (d.getElementById(id)) {return;}
 js = d.createElement('script'); js.id = id; js.async = true;
 js.src = "//connect.facebook.net/pt_BR/all.js";
 ref.parentNode.insertBefore(js, ref);
 }(document));
</script>
<div class="fb-login-button" scope="email">Login com Facebook</div>
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.