Vivek Dhiman
Vivek Dhiman

Reputation: 1997

Get All Posts from Facebook Page

I am looking for the information posted on the facebook page. I am able to hit the api as below https://graph.facebook.com/v2.8/203511053776284/feed?limit=100&access_token=XXXXXXXXXXX&format=json. I am able to get the below data but no images related with post.

data": [
      {
         "message": "This is my first post",
         "created_time": "2018-05-16T08:05:02+0000",
         "id": "203511053776284_203511440442912"
      }
   ]

Any way to get all the information from facebook page.

Upvotes: 4

Views: 17497

Answers (1)

j4rey
j4rey

Reputation: 2677

You need to pass fields value to fetch additional data.

https://graph.facebook.com/v2.8/203511053776284/feed?fields=id,name,message,story,created_time,link,description,caption,attachments{media,type,subattachments}&limit=100&access_token=XXXXXXXXXXX&format=json.

I recommend exploring Graph API Explorer tool.

Upvotes: 7

Related Questions