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.

In my application i need to retrieve user data from facebook. I have several user id and i need to get more than basic information about this users.So, is there any way to ask for some permissions(offline_access,publish_stream etc.) a user, who has not approved my application?

share|improve this question

closed as not a real question by BK., Igy, Bill the Lizard Apr 3 at 4:37

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

When you ask the user for the extended permissions and if he clicks on allow, then he is automatically authorizing your application as well.

Authorizing the application may be agreeing to provide basic information that is public or providing any other permission for use by the app.

share|improve this answer
User must follow to my app's page?Or it is possible by sending some request to user? I'm using graph api. I was trying graph.facebook.com/USER_ID?scope=offline_access, but response contains only basic info. – Yury Tarasyuk Jan 11 '12 at 6:12
When the user is interacting with your app, you may induce him to click a button explaining your intentions and get all the necessary permissions you require. offline_access is a very advanced permission and you must try to make do without that. As more permissions you ask of the user the more the chances he will decline. Also you get the access token when the user allows permission and you have to use that as a parameter to get the info instead of passing the permission as a parameter. Make sure you go thru the graph api docs carefully as all this information is explained better. – BST Jan 11 '12 at 6:26
It helps! Thanks! – Yury Tarasyuk Jan 11 '12 at 9:07

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