Embark on a journey of knowledge! Take the quiz and earn valuable credits.
Take A QuizChallenge yourself and boost your learning! Start the quiz now to earn credits.
Take A QuizUnlock your potential! Begin the quiz, answer questions, and accumulate credits along the way.
Take A QuizKindly log in to use this feature. We’ll take you to the login page automatically.
LoginDigital Marketing Facebook Marketing API 3 years ago
User submissions are the sole responsibility of contributors, with TuteeHUB disclaiming liability for accuracy, copyrights, or consequences of use; content is for informational purposes only and not professional advice.
No matter what stage you're at in your education or career, TuteeHUB will help you reach the next level that you're aiming for. Simply,Choose a subject/topic and get started in self-paced practice sessions to improve your knowledge and scores.
Kindly log in to use this feature. We’ll take you to the login page automatically.
Login
Ready to take your education and career to the next level? Register today and join our growing community of learners and professionals.
Your experience on this site will be improved by allowing cookies. Read Cookie Policy
Your experience on this site will be improved by allowing cookies. Read Cookie Policy
manpreet
Best Answer
3 years ago
_x000D_ This sounds like you actually made a POST request, and not a GET - because posting to this edge is supposed to trigger creation of a report in the background, https://developers.facebook.com/docs/marketing-api/reference/ad-campaign-group/insights/#Creating: When posting to this edge, an AdReportRun will be created. https://developers.google.com/apps-script/reference/url-fetch/url-fetch-app#fetchurl-params, says in the description of the payload parameter, Certain HTTP methods (for example, GET) do not accept a payload. So because you supplied a payload, that probably makes it use POST, and ignore that you tried to specify 'method' : 'get' Don’t supply a payload, append your access token directly to the URL as a query string parameter instead. var url = "https://graph.facebook.com/v4.0/CAMPAIGNID/insights?access_token=…" (You can probably remove the options object completely then, and call fetch with just the URL as single parameter, because GET is the default anyway.)