facebook - Fb.ui method feed not working. Loading gif appears but no error message or anything -


so i've been trying implement fb method feed people can share songs website. doesn't work.

it pops loading gif in dialogue , thats it. no error nothing. i've wasted lot of time trying figure out haven't been able to.

here's code,

share_obj = {     method: 'feed',                       link: "", redirect_uri: "",                       picture: ",                       name: "",                       caption:"" ,                       description: ""             }; fb.ui({method: "permissions.request", "perms": 'publish_stream'},      callback);         function callback(response) { if(response["perms"]=="publish_stream") { var obj = share_obj; fb.ui(obj,callback_share); } } function callback_share(response) { } 

does have facebook app migrations or app permissions?

so turns out, there s no need ask user permissions when invoking fb.ui method. permissions required when intend publish stories via graph api.


Comments

Popular posts from this blog

SPSS keyboard combination alters encoding -

Add new record to the table by click on the button in Microsoft Access -

javascript - jQuery .height() return 0 when visible but non-0 when hidden -