skip to Main Content

Facebook Graph API and Docker

Im working on a website using Laravel in a Docker container on local. The webserver used is Nginx. Im trying to implement Facebook's Graph API (the PHP API) and as Im developing on localhost and using Docker, any time I…

VIEW QUESTION

"(# 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 Long-Lived Token

I am working with Facebook Graph API and I have followed the instruction on the official documentation page to obtain a Long-Lived Token using a previously extracted access token by running the below code //Get long-lived access token var longLiveToken…

VIEW QUESTION
Back To Top
Search