1myb
1myb

Reputation: 3596

How to get shared message for the URL with Facebook graph api?

I know i can get the shared count with something like this

http://graph.facebook.com/?id=http://stackoverflow.com

but is it possible to get the message from facebook, what they post with the shared link ? For example i shared stackoverflow[.]com and i post the message "it's useful !!". How can i collect all the message ?

Upvotes: 0

Views: 182

Answers (1)

deesarus
deesarus

Reputation: 1202

If you are using the graph explorer to retrieve this, the message will be included as part of the returned object, but you should pass that link_id. If you use FQL, then you can query the link table and the owner_comment field will get you that data.

Upvotes: 1

Related Questions