Facebook credentials

Agoras needs the following credentials from facebook to be able to access its API.

  • Access token

  • Page ID

For that, we’ll need to create a Facebook App.

How to get a Facebook permanent access token

Create a Facebook App

If you already have an app, skip to “Get User Short-Lived Access Token”.

../_images/facebook-1.png
  1. Go to My Apps.

  2. Click “Create App”.

  3. Setup a website app. This step will ask you to fill the type of app (select “None”), and then fill the app name.

../_images/facebook-2.png ../_images/facebook-3.png

You don’t need to change its permissions or anything. You just need an app that wont go away before you’re done with your access token.

Get User Short-Lived Access Token

  1. Go to the Graph API Explorer.

  2. Select the application you want to get the access token for (in the “Meta App” drop-down menu).

  3. In the “Add a Permission” drop-down, search and check pages_show_list, pages_read_user_content, pages_read_engagement, pages_manage_engagement, instagram_basic and instagram_content_publish.

  4. Click “Generate Access Token”.

  5. Grant access from a Facebook account that has access to manage the target page. Note that if this user loses access the final, never-expiring access token will likely stop working.

The token that appears in the “Access Token” field is your short-lived access token. Take note of it.

../_images/facebook-4.png

Generate Long-Lived Access Token

../_images/facebook-5.png

To get a long-lived access token (60 days), you’ll need the short-lived access token from the previous step, your app ID and your app secret:

https://graph.facebook.com/oauth/access_token?grant_type=fb_exchange_token&client_id={app_id}&client_secret={app_secret}&fb_exchange_token={short_lived_token}

You cannot use the Graph API Explorer. For some reason it gets stuck on this request. I think it’s because the response isn’t JSON, but a query string. Since it’s a GET request, you can just go to the URL in your browser.

The response should look like this:

{"access_token":"YYYYY","token_type":"bearer","expires_in":5183791}

“YYYYY” will be your long-lived access token. You can put it into the Access Token Debugger to verify. Under “Expires” it should have something like “2 months”.

Get User ID

Using the long-lived access token, make a GET request to:

https://graph.facebook.com/me?access_token={long_lived_access_token}

The response should look like this:

{
      "name": "Luis Alejandro Mart\u00ednez Faneyth",
      "id": "XXXXX"
}

The “XXXXX” field is your account ID. You’ll need it for the next step.

Get Permanent Page Access Token

Make a GET request to the following URL, you’ll need the account ID from the previous step and the long-lived access token:

https://graph.facebook.com/{account_id}/accounts?access_token={long_lived_access_token}

The JSON response should have a data field under which is an array of items the user has access to. Find the item for the page you want the permanent access token from. The access_token field should have your permanent access token. Copy it and test it in the Access Token Debugger. Under “Expires” it should say “Never”.

Agoras parameters

Facebook credential

Agoras parameter

Permanent Page Access Token

–facebook-access-token

Page ID

–facebook-object-id