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've some problem when posting an activity to opengraph.. for example:

  • user A login in my app and give a comment on article XX then the activity posted to their facebook profile
  • then.. user A logout facebook, that will automatically expired their access_token
  • user A still login in my app and give another comment and of course the activity will not posted to his facebook profile because he's logout from facebook

what I want to do is:

when user A logout facebook, then give a comment on article in my app.. then user A login facebook again the activity will posted to their facebook profile.. I'm sure this is posible. because http://www.foodspotting.com/ can do that.. but I can't figured out how to do?

Thanks

share|improve this question
Have you checked the official Handling Invalid and Expired Access Tokens guide? Start with that, if you still can't figure it out come back here. – Nitzan Tomer May 22 '12 at 9:26
Hi Nitzan, I've already fixed it.. I already handle for that expired access_token by exchange that token. my bad.. I didn't enabled the "Remove offline_access permission" / "deprecated offline access" in my application setting :D it's fixed now.. thanks :) – Rifki Fauzi May 22 '12 at 9:57

1 Answer

If you're a web app, calling FB.getLoginStatus() in the JS SDK will get you a fresh access token.

Otherwise you need to pass the user through the authentication flow again.

http://developers.facebook.com/docs/authentication/client-side/

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.