Facebook Login auth dialog and permissions

bfldworker

New Member
I've set required permissions for my app in "Settings/Auth dialog". However they doesn't show up when I add generic login button\[code\] <div id="fb-root"></div> <script> window.fbAsyncInit = function() { FB.init({ appId : 'xxx', status : true, cookie : true, xfbml : true }); }; (function(d){ var js, id = 'facebook-jssdk'; if (d.getElementById(id)) {return;} js = d.createElement('script'); js.id = id; js.async = true; js.src = "http://stackoverflow.com//connect.facebook.net/en_US/all.js"; d.getElementsByTagName('head')[0].appendChild(js); }(document)); </script> <div class="fb-login-button">Login with Facebook</div>\[/code\]
 
Top