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 QuizDigital Marketing Facebook Marketing API 2 years ago
Posted on 16 Aug 2022, this text provides information on Facebook Marketing API related to Digital Marketing. Please note that while accuracy is prioritized, the data presented might not be entirely correct or up-to-date. This information is offered for general knowledge and informational purposes only, and should not be considered as a substitute for 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.
Digital Marketing 0 Answers
Digital Marketing 0 Answers
Digital Marketing 1 Answers
Digital Marketing 0 Answers
Digital Marketing 1 Answers
Ready to take your education and career to the next level? Register today and join our growing community of learners and professionals.
manpreet
Best Answer
2 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.)