Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Like many other people on the web I was worrying about the expiration of the 60-day access tokens because my app will do some async publishing and I cannot initiate re-athorization because those jobs run on the backend without any user-involvement. Then I disovered that there are "App access Tokens" (http://developers.facebook.com/docs/concepts/login/access-tokens-and-types/). And they can be used to publish 'on behalf of the user' without expiring. My question is: What are the limits of these app-tokens when publishing? Is there anything I can't publish with them?

share|improve this question
The limitations of access tokens vary widely between issuers. Have you checked out the public Facebook API for this? developers.facebook.com/docs/opengraph/using-app-tokens is where I'd start. – Hbcdev Nov 13 '12 at 11:31
Thanks for your Answer! Yeah, I did. I even tested it successfully and could publish the same message with a user- or app-token. Of course the user had to grant 'publish_actions' to my app. But I think he has to do that anyway, even if I use the user-token. (?) That's when I started wondering 'Why are there so many discussions about 60-day-tokens & backend-publishing? I must have gotten something wrong about app tokens...' – Christian Schmidt Nov 13 '12 at 13:06
Just read the docs once more and I can only see that on app-access-tokens there is a limit on the retrieval of information (which I fortunately do not need in my app). No limit on publishing mentioned. So I think I will go for the app-access-token... – Christian Schmidt Nov 13 '12 at 13:07

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.