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.

I know how to use the token after the user successfuly logs in with

FacebookLoginDialog(AppId, ExtendedPermissions); 

but what happens when my app wants to post at this user while he is offline? And how can i renew the token? Is there a way to regognize that a user has allowed the app to post by only his id?

share|improve this question

2 Answers

up vote 2 down vote accepted

Request offline_access extended permission and then you can post when the user is offline and you want have to worry about refreshing the token.

share|improve this answer
so the only thing i have to do is after he accepts my App, to keep in a DB/File/Whatever his ID and Token, and use those to post or what ver i want?. Also do you know a way to regognize if a user has a token for a particular App? Ofcourse i mean that you own this App. Thanks for your answer :) – vkline Sep 23 '11 at 5:51

From Facebook's documentation:

Enables your app to post content, comments, and likes to a user's stream and to the streams of the user's friends. With this permission, you can publish content to a user's feed at any time, without requiring offline_access.

It seems like there is really no need to have that offline_access permission to post on user's wall while there are offline - there has to be a way to 'refresh' the access token, or use the application's token.

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.