Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When I call FB.login() with 'publish_stream' as the requested permission, i.e

FB.login( handleLogin, {scope: 'publish_stream'}  );

In the dialog that opens, it only says I'm requesting their basic information, and says nothing about the stream_publish permission.

Is this how its expected to work, and when the user clicks accept, he would give this permission, or do I need to then open a second dialog to request this permission somehow? Any ideas?

share|improve this question
1  
Are you sure you haven't already gotten the publish_stream permission from that user? note that extended permissions like publish_stream are displayed on a second page of the dialog after the initial acceptance – Igy Oct 15 '12 at 22:25
No I haven't, but it seems like after you click login, then it automatically shows you a dialog saying the app would also like perms to publish. If someone wants to answer, I'll accept. – Click Upvote Oct 15 '12 at 22:41

1 Answer

up vote 2 down vote accepted

Extended permissions, including publish_stream are displayed on a second page of the dialog - if the user hasn't used your app they must accept the basic permissions you're requesting (including the privacy options for items posted by your app), and then a second page appears asking for the extended permissions

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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