I want to get the number of followers for a certain day, but no data is stored in `data` and it returns

18 Views Asked by At

I executed an API like below:

https://graph.facebook.com/v19.0/{PAGE_ID}/insights?metric=follower_count&period=day&since=1706717975&until=1706668799&access_token={TOKEN_ID}

Then the following value was returned

{
    "data": [
      
    ],
    "paging": ...
       "next": ...
    }
}

There is no value stored in the data property. How can I store the value in the data property and retrieve the number of followers on a certain date?

0

There are 0 best solutions below

Related Questions in INSTAGRAM-GRAPH-API