angularjs - Facebook login callback not called -
i'm trying use fb api login on app built angularjs. i'm using angular-facebook library. works, issue once user authorized app, callback not called. popup window not closed, , solution user reload page. how can fix this?
$scope.login = function() { facebook.login(function(response) { // never called ;_; if (response.status == 'connected') { // need stuff here } }, {scope: 'email,user_birthday,user_likes'}); };
if want more detail information on how use angularjs facebookapi, might helpful:
http://www.boynux.com/angularjs-facebook-integration/
regards,
Comments
Post a Comment