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.

My app sends a GET to

https://graph.facebook.com/oauth/access_token?
client_id=APP_ID&
client_secret=APP_SECRET&
grant_type=fb_exchange_token&
fb_exchange_token=EXISTING_ACCESS_TOKEN 

And FB always returns the same token again. The initial expires value is ~1 day and gets decremented. Even after a fresh login which shoulöd get a short lived token and that exchange call which should exchange a short lived with a long lived token always that same short lived token is returned.

So how should one exchange a short lived token with a long live token?

share|improve this question
maybe you should read about offline access removal – norman784 Nov 22 '12 at 20:57
I've read it a few times already. And I do it the way it's described there. I get an access token from FB which is a short lived one, then I call the above API to exchange the short lived one with a long lived token, but the successful response from FB sends me just the same short lived token with a short expiration date back. :( – Rene Schulte Nov 23 '12 at 9:33

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.