我使用以下代码发布到网页的feed
连接
$attachment = array('message' => 'xxxxxxxxxxxxxxxxx',
'name' => 'cccccccccccccccc',
'caption' => 'cccccccccccccccc',
'link' => 'http://apps.facebook.com/manydldotnet/',
'description' => "ccccccccccccc",
'picture' => "'cccccccccccccccc'",
'actions' => array(array('name' => 'Download!','link' => 'http://apps.facebook.com/manydldotnet/'))
);
$result = $facebook->api('/121468571287906/feed/','post',$attachment);
所以问题是如何在发布后获取post_id?
答案 0 :(得分:6)
帖子的ID存储在$result['id']
。
这是对feed
的调用的返回值; /links
,/photos
等
参考:http://developers.facebook.com/docs/reference/php/facebook-api/
答案 1 :(得分:1)
检查$ result变量中的值,该值应该是实际的post_id值。