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>