RelayAPI

List Facebook Pages after OAuth

GET
/v1/connect/facebook/pages
AuthorizationBearer <token>

API key (rlay_live_* or rlay_test_). Invite redemption also accepts a server-derived rlay_session_ bearer for a current user session.

In: header

Query Parameters

connect_token*string

Operation-scoped token returned by the OAuth callback

Length1 <= length

Response Body

application/json

curl -X GET "https://example.com/v1/connect/facebook/pages?connect_token=string"
{  "pages": [    {      "category": "string",      "id": "string",      "name": "string",      "picture_url": "string"    }  ]}

Found something wrong? Help us improve this page.