skip to Main Content

How do you see the Facebook marketing api insights in graph api explorer? Could I explain?
Can you get the output as you see in this link? Marketing Api Sample

2

Answers


  1. Chosen as BEST ANSWER

    I had a answer,I will expalin here

    The Following Links are very usefull For this question

    https://developers.facebook.com/docs/marketing-api/insights-api
    https://developers.facebook.com/docs/marketing-api/insights/fields/v2.10
    https://developers.facebook.com/docs/marketing-api/reference/ad-keyword-stats
    https://developers.facebook.com/docs/marketing-api/insights/v2.10
    https://developers.facebook.com/docs/marketing-api/insights/fields/v2.10
    https://developers.facebook.com/docs/marketing-api/tracking-specs/v2.10
    
    https://developers.facebook.com/docs/marketing-api/insights/parameters/v2.10
    

    FB is not defined javascript

    Go to https://developer.facebook.com and Create App and Left side nav bar to create marketing api and manage this are above tools. Any doubts comments here..


  2. base url can be like this

    https://graph.facebook.com/v3.2/me/adaccounts?fields=ads,campaigns,adsets
    

    you can expand any fields with subfields

    if you want insights of ads you can replace ads with

    ads{insights{reach,impressions,frequency, unique_clicks, actions, spend, cpc}}
    

    and so on….

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search