Obtain 24-hour Access Token
Once you get the authorization code, you can redeem 24-hour access token with the following API.
Body
clientIdstringRequired
Client ID obtained from the Cream Portal.
clientSecretstringRequired
Client Secret obtained from the Cream Portal.
authorizationCodestringRequired
Authorization code obtained after the Sign In with Cream.
Responses
200Success
application/json
post
/api/v1/ext/auth/oauth/accesstoken200Success
Once you obtain the access token, you should put the access token at the Authorization Header (Starting with Bearer) of every Graph API.
To test the Graph API, please try this /me endpoint.
You should be able to obtain the profile of the logged in user.
Last updated