Reputation: 1391
I know a way to get the attachments by Graph API. But this can only get 12 items back. I don't see an edge like "next page" in the JSON, how should I do this?
Upvotes: 2
Views: 760
Reputation: 49
In my case,
/{page-id}/feed/?fields=message,attachments{subattachments.limit(30)}
Here, 30 is big enough for limit. (Maybe default limit is 12.)
Upvotes: 4