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

How to get instagram username from new facebook graph API

Looking at the new Instagram Graph API - there is no direct way to retrieve username once a user is logged in. Although it says in the official document that a call like "https://graph.facebook.com/v3.2/17841405822304914?fields=biography%2Cid%2Cusername%2Cwebsite&access_token=EAACwX..." should return the following: { "biography":…

VIEW QUESTION
Back To Top
Search