Reputation: 167
I have a facebook feed, built on Facebook API. It works pretty well. But I have one problem. It seems like I can't catch some text from some status messeges.
Below you can see the API feed.
The two "empty" posts are these on Facebook:
This is the call to get json (Token removed):
The problem: I do not get the following texts: "Kultur Karlshamn har uppdaterat sin adress." and "Kultur Karlshamn har uppdaterat informationen i avsnittet Om". And I can not find any clear answer on this problem. Why do I not get the header/texts? What field am I missing in my API/json-call?
Upvotes: 0
Views: 281
Reputation: 96316
The text of those posts that are created automatically can be found in the story
field.
https://developers.facebook.com/docs/graph-api/reference/v2.10/post:
story: Text from stories not intentionally generated by users, such as those generated when two people become friends, or when someone else posts on the person's wall.
Upvotes: 1