Johann Chang
Johann Chang

Reputation: 1391

Get all attachments (photos) from a post through Facebook Graph API

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

Answers (1)

user3710813
user3710813

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

Related Questions