如何检索我刚刚通过Facebook API发布的帖子的帖子ID

时间:2011-10-18 20:47:43

标签: php html facebook facebook-graph-api

我使用以下代码发布到网页的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?

2 个答案:

答案 0 :(得分:6)

帖子的ID存储在$result['id']

这是对feed的调用的返回值; /links/photos

的情况也是如此

参考:http://developers.facebook.com/docs/reference/php/facebook-api/

答案 1 :(得分:1)

检查$ result变量中的值,该值应该是实际的post_id值。