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?