Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Get check ins for a specific Facebook location (page)

I have a Facebook location (page) where users can check in. I'm the administrator of this page. Is there a way with the API to get a list of recent check ins with user ID's?

like image 992
paha Avatar asked Nov 23 '12 22:11

paha


People also ask

Can I create a check in location on Facebook?

You can add your location on a Facebook post using Facebook's check-in feature. If you have a Facebook business page, you can also use this feature to help get the word out about your business. To share your location in a Facebook post, all you have to do is click or tap the "Check In" button.

How do I see check-ins on Facebook business page 2022?

Here is a quick guide on how to view check-ins on the Facebook Business page 2022: First thing first, Make sure you're logged in as an Admin, and from your Facebook Page. Go to "Reviews" at the top. From there under "Reviews" you can click on "Check-ins"

Can you see who has checked in at a location on Facebook?

Unfortunately, Facebook won't show you every check-in that's taken place at your location. Instead, you'll only see those that Facebook deems “recent.” We're not sure what time period “recent” refers to, but if you check this activity at least once a month, you should be fine.

Where can I find page check-ins?

Navigate to your profile page. Select More directly under your cover photo. Select Check-Ins from the list. If Check-Ins is missing, select Manage Sections and place a checkmark next to Check-Ins, then select Save.


1 Answers

Not sure if you've looked at them or not, but as far as I can see from the documents, this is not possible. The checkins connection for a page https://developers.facebook.com/docs/reference/api/page/ only gives you a count of all the checkins.

With a user access_token it will only return a users checkins or that of their friends (if the appropriate permissions have been granted). But you won't be able to get the user_ids of people you are not connected to.

Saying that you could try the following FQL query with a page access token.

 SELECT author_uid,checkin_id,timestamp FROM checkin WHERE target_id = xxxxxxxxxxxxx
 //where xxxxxxxxxxxxxx = your page id

Or try subscribing to realtime updates https://developers.facebook.com/docs/reference/api/realtime/#introduction

Unfortunately I can't test this as I don't have any pages set-up with a location specified

like image 198
TommyBs Avatar answered Oct 16 '22 09:10

TommyBs