0
votes

I have created the page in facebook and I would like to get facebook stats daily using graph API.

I can get access token by using facebook explorer tools , but it is expired shortly.

I need long live access token to get insights details by using graph API. It would help to get facebook stats daily. If anyone knows it, please share your suggestions.

Thanks in advance!

2

2 Answers

0
votes

You will need to gather the access token from your user with permission 'manage_pages'.

Then you can use this request

GET /oauth/access_token?
grant_type=fb_exchange_token&
client_id={app-id}&
client_secret={app-secret}&
fb_exchange_token={short-lived-token}

to obtain a long living page access token. Use this for your statistics.

0
votes

Read about the tokens here: https://developers.facebook.com/docs/facebook-login/access-tokens

  1. Get the user access token with manage_pages permission

  2. Extend the user access token as explained in here: https://developers.facebook.com/docs/facebook-login/access-tokens/expiration-and-extension

  3. Use the above token and get the page access token using /v2.5/{page-id}?fields=access_token

    The token you get here wont expire.