0
其實,我得到了facebook的帖子的post_id,我正在尋找獲得張貼的頁面。函數「getParentId」是否返回?如何獲得出版物的海報?
其實,我得到了facebook的帖子的post_id,我正在尋找獲得張貼的頁面。函數「getParentId」是否返回?如何獲得出版物的海報?
根據Facebook API documentation,parent_id
是「此帖的父帖子的ID(如果存在)」。因此,這不是你想要的。
您可以通過facebook4j的getFrom方法獲取帖子所屬頁面的ID。
圖形瀏覽器例如:
postId=5281959998_10151166683754999
GET /v2.9/$postId?fields=from
{
"from": {
"name": "The New York Times",
"id": "5281959998"
},
"id": "5281959998_10151166683754999"
}