既然/[ post-id ]在 v2.4中已被弃用,我们应该如何检索单个帖子?

我刚用这个路径/v2.4/10153513872748291在 Graph API Explorer 中尝试了一下,得到了这样的结果:

{
"error": {
"message": "(#12) singular links API is deprecated for versions v2.4 and higher",
"type": "OAuthException",
"code": 12
}
}

https://developers.facebook.com/docs/reference/api/post/没有提到任何关于弃用的内容。

我不知道我是否错过了什么,或者有其他的方法来获得关于个人的信息。

编辑: v2.3可以工作,但 v2.4是最新的版本。

47013 次浏览

看起来你现在需要组合的用户或网页,使发布(或墙上它是) ,一个下划线,然后发布标识。

对于您的示例文章 10153513872748291,它是由具有 id 141108613290的页面 Drama-addict制作的,因此 141108613290_10153513872748291将起作用。

788239567865981_10153513872748291也是如此,因为 788239567865981是发帖用户的 id。

Firstput userId 下划线添加 postId/Like 以检查 Facebook 中的 Like 状态

UserId _ post _ Id/Likes 来获取 Likes Records

UserId _ post _ Id/Comments 来获取评论记录

    https://developers.facebook.com/tools/explorer/145634995501895/?method=GET&path=303261006522998_751199848395776%2FLikes&version=v2.9


**In this link Right side Get Token indide GetAccessToken to select Permission**

enter image description here

    303261006522998_751199848395776/Likes
303261006522998_751199848395776/Comments


{
"data": [
{
"id": "124778301449917",
"name": "Manisha Gera"
},
{
"id": "1680577265523548",
"name": "Rubi Sharma"
}
],
"paging": {
"cursors": {
"before": "MTI0Nzc4MzAxNDQ5OTE3",
"after": "MTY4MDU3NzI2NTUyMzU0OAZDZD"
}
}
}