facebook - Why FB.login doesn't ask me for permissions -
when try publish following code:
fb.login(function(response) { if (response.authresponse) { fb.api('/me/feed','post',{ name: "nombre", link: "http://radio/player/bbc_world_service", description: "this test", message : "xxxxxxxx" },function(response) { // }); } else { // } },{scope: 'publish_actions','user_likes'});
it doesn't ask me permissions, publishes in timelime directly. far know theoretically must ask me permissions. try same thing through facebook explorer, ask for.
it doesn't ask me permissions, publishes in timelime directly.
this means you've authorized app once. once authorized, doesn't ask permissions again unless new permissions added.
delete app facebook profile , try again. ask permissions then.
Comments
Post a Comment