I have a post id (obtained from the Graph API), can I generate a URL which will display this post in Facebook's interface?
Seems there should be something like http://facebook.com/viewpost?postid=6666666666 ...
|
I have a post id (obtained from the Graph API), can I generate a URL which will display this post in Facebook's interface? Seems there should be something like http://facebook.com/viewpost?postid=6666666666 ... |
||||
|
|
|
You want to manually construct a permalink given only the post ID? The Graph API for a post ID returns the URLs the user should go to to comment on or like the post, assuming the viewing user has permission to do so. Example:
Snipped some of the fields of the response, but you're looking for 'actions':
In general, the format of a permalink seems to be:
You can't definitely reply on that URL format always being the same; the API response should be always accurate though |
||||
|
|