vote up 0 vote down star

I'm integrating my site with Facebook Connect.

I wonder if it's possible to request permission publish_stream at the same time that user is logging first time to the site using Facebook Connect.

flag

30% accept rate

1 Answer

vote up 0 vote down

I'm not sure what you mean by all at once, but yea sorta. Connecting with facebook, logging in, authorizing, and allowing the publish stream permission will all be in the same flow in the same modal that pops up.

FB.Connect.showPermissionDialog("publish_stream", function(result){
    //post auth callback
});

This will prompt the user to log in as well as authorize the app and prompt for extended permissions. I believe the callback function is only called when the user authorized the extended permissions.

http://wiki.developers.facebook.com/index.php/JS_API_M_FB.Connect.ShowPermissionDialog

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.