I spent several hours wrestling with this, so hopefully this will help someone else:
Facebook posts and statuses are remarkably similar. The differences are as follows:
In order to request a post object instead of a status object for a "status" (since all statuses are posts) prepend the user_id of the person who made the status to the id of the post.
So for example querying the Graph API for the object with id
Facebook posts and statuses are remarkably similar. The differences are as follows:
- Facebook posts are any posts a user makes anywhere
- Facebook statuses are posts a user makes on his or her own wall/stream
In order to request a post object instead of a status object for a "status" (since all statuses are posts) prepend the user_id of the person who made the status to the id of the post.
So for example querying the Graph API for the object with id
"100006765630328_1380118238890351"
will return a POST object, whereas "1380118238890351"
will return a STATUS object.
0 comments:
Post a Comment