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'm trying to get the number of recent checkins for multiple facebook places. I'd like to setup a CRON script that queries for recent checkins using something like:

SELECT tagged_uids FROM checkin WHERE timestamp > 1318514998 AND page_id IN (138444418096,138444418097)

But since this is a (fb userless) cron script, how can I get an access_token? I've tried getting one for a facebook app, but that didn't work.

share|improve this question

1 Answer

You need to get an offline_access token and make sure that your script is on the same domain as your FB app that generated this token. BUT I don't think you can retrieve these info if you don't own the page.

share|improve this answer
Using the "Try this Query" link on developers.facebook.com/docs/reference/fql/checkin , I can edit the ?query variable in the URL and then get the user IDs of people who have checked in without me being friends with them. This is using the access token that facebook auto-generates when I click that link. Does that mean this info is public? – Charlie Rosenbury Oct 13 '11 at 20:54

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.