is there a way to check if a user checked into a particular place at any time in the past?
with php sdk, i can get a place info like:
$place = $facebook->api('/placeIDhere');
var_dump($place['checkins'])
this gives me the checkin count.
to get the recent checkins of a user i could do
$usercheckins = $facebook->api('/search?type=checkin');
var_dump($usercheckins[0]['place']['name']);
this gives me the last checkin by name
but is there a way to check if a user checked into a special place? /search?type=checkin
only gives me a very small number of recent checkins and if a checkin is older than ~2-3 weeks it doesn't even appear.
thanks for all help.