Kaidul
Kaidul

Reputation: 15885

Retrieving facebook page JSON feed is not working

I have tested it and write the direct URL on the URL bar:

https://graph.facebook.com/my_page_id/feed?access_token=my_token

But all it shows are blank JSON feed:

{
   "data": [

   ]
}

How can I get the new feed?

Upvotes: 0

Views: 318

Answers (2)

Kaidul
Kaidul

Reputation: 15885

At last I have found it :) https://www.facebook.com/feeds/page.php?id=page_id&format=json

You can found your page id by https://graph.facebook.com/page_name

Upvotes: 0

hemc4
hemc4

Reputation: 1633

api check connection to your server . request should be send by curl. so direct url pasting would not be working. upload files to server or make virtualhost then send request from sever . check Publishing to know about curl

Upvotes: 1

Related Questions