How do we get a separate entry when / [post-id] is deprecated in version 2.4?

I just tried through the Graph API with this path / v 2.4 / 10153513872748291, and I have this result:

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

But https://developers.facebook.com/docs/reference/api/post/ says nothing about obsolescence.

I'm not sure if I am missing something, or there is another way to get information about a single message.

Edit: v2.3 works, but v2.4 is the last.

+52
facebook facebook-graph-api
Jul 11 '15 at 4:57
source share
2 answers

It seems that now you need a combination of the user ID or the page on which the recording was made (or on its wall), an underscore, and then the message identifier.

For your example, post 10153513872748291 , which is created by the Drama-addict page, which has the identifier 141108613290 - so 141108613290_10153513872748291 will work.

And also 788239567865981_10153513872748291 , because 788239567865981 is the identifier of the user making the message.

+103
Jul 11 '15 at 6:34
source share

Firstput userId underscore add postId / Likes to check Like status on facebook

userId_post_Id / Likes to receive Likes Records

userId_post_Id / Comments to get comments from posts

  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" } } } 
0
Jul 03 '17 at 11:10
source share



All Articles