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.

im trying to make a small bot with my facebook app.

i've an Facebook app, people registered to my app through facebook.

i want my bot to check every day checkins of my users (launch with scheduler like cron)

since the bot is not accessed by a user, is there any way to retrieve access token for a user to get checkins information? via graph api?

i read that access_token expires, event offline_token can not be used forever.

i have tryed to store fb_uid and user code generated when registering, but that is not working...

thanks.

best regards.

share|improve this question

1 Answer

up vote 1 down vote accepted

This is where offline_access rights are for. You can test this by using the token debugger. Just get a token with offline_access and you will see that the token won't ever expire. Until off course the rights are revoked by the user.

share|improve this answer
Hey, thanks! i'll try the offline_access and test all scenarios, i wish there was something like Foursquare API, u got a user access token and store it, then, u can access user checkins using his/her token.... regards, Adrien – Adrien Nov 7 '11 at 12:41
Hey thanks, the offline token is working fine... – Adrien Nov 11 '11 at 14:35

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.