skip to Main Content

"(# 100) You must provide an application access token or user access token who owns or is the developer of the application" (see Description)?

I make a request to find out the data about my user access token: fetch("https://graph.facebook.com/v8.0/debug_token?input_token=" + access_token).then(function (response) { response.text().then(function (textII) { alert(textII); }); }); In this case, I take the accessToken value from auth Response after authorization to the…

VIEW QUESTION

Facebook Graph API- Page post fetch in website

I used following code to access facebook page posts. $accessToken = 'EAAlGssgdgQIBAHuD9ZBZB6RWZClM3bmm8Vjv2nZBNmotTTnubgzdK4aiHbqJwhRlELjAurPEHKSqxJS7c0Pyd5ZBuqZAo2keabbkubx0AZCl3m6brDGlkXNgMq9dtNUZAx4P6QwdsXwNvJaEi2j3YDsHpZABiRxRK6qMAmZAyynLvJNCJ41ZBn9se28QUsDHG72mhZCzHFLpLQUxZCAZDZD'; $id = '109395947376896'; $url = "https://graph.facebook.com/$id/posts?access_token=$accessToken"; $result = file_get_contents($url); $decoded = json_decode($result, true); var_dump($decoded); and get the following result. screenshot is attached how do I get images of…

VIEW QUESTION
Back To Top
Search