I have a Facebook feed located via this URL: https://www.facebook.com/feeds/page.php?id=131872766880896&format=json.
It's in JSON format as specified by the URL.
When I enter this URL on my browser, I get a valid JSON. However, if I were to request this URL from a PHP page, either using PHP script like file_get_contents then json_decode, or jQuery getJSON, what I get is a HTML response, which is literally a Facebook page asking me to upgrade my browser. The HTML code for this response can be seen by inputting the above URL into the JSON Lint validator.
I have to use this method because the site I am building the feed for does not have an App ID associated with it, so I can't get an access token unless a personal Facebook account is used, and this is also not a feasible option due to the deprecation of online_access, which means I will have to manually regenerate a long lived access token every 60 days. Or is there another workaround to this? I only need to display the last entry on the page's Feed, so I was thinking of something like getting the content at $data['entries'][0]['content'], where $data is the JSON object.
The post here, Loading facebook wall feed JSON issues, shows that the user has ended up loading it via PHP and then populating his page via AJAX. But as mentioned above as well, loading it via PHP gives me the HTML code block that was generated by inputting the Facebook feed URL I want to use into JSON Lint. This is what my PHP code looks like:
<?php
$feed = file_get_contents('https://www.facebook.com/feeds/page.php?id=131872766880896&format=json');
echo $feed;
?>