我正在阅读 Facebook 的新 api(opengraph)已经改变,我正在尝试发布一些东西并在上面标记几个朋友......根据这个https://developers.facebook.com/docs/reference/api/user/ #posts我应该在“标签”部分指定ID,但不起作用,我看过一些参考资料,但很旧......
问题是它确实张贴在墙上,但没有标记或显示该地点。
我为此使用php。
有人做过这个吗??
这是我的代码
$post = array('message' => 'my message ',
'name' => 'name',
'caption' => "something",
'link' => 'my page',
'description' =>"some desc",
'place' => '323816477724410',<--- id of a city
'tags' => 'xxxxxx', <---- facebook id
);
$result = $facebook->api("/".$user."/feed/", 'post', $post);