I'm trying to post a check-in in user's feed, using offline access. But I keep getting various errors, but if i try to post message/video/picture everything works great.
So here is my code:
public function postCheckIn()
{
$post=array(
'access_token'=> $this->token,
'message'=>'Test check-in!',
'place'=>'172822562765332',
'coordinates' => json_encode(array(
'latitude' => '55.772855818478',
'longitude' => '37.687225341797'
))
);
try
{
$res=$this->fb->api('/'.$this->uid.'/checkins', 'POST', $post);
}
catch(FacebookApiException $e)
{
$res=$e->getMessage();
}
return $res;
}
When I'm running this code, I get an exception:
Requires a valid Place Page ID
I check this place using https://developers.facebook.com/tools/explorer/, and it returns some valid info.
BTW, I have publish_checkins permission.
Do I always have to provide placeId, and coordinates? Can I provide one of this parameters? And how to get it to work?
Thank you.