Get Access Token v2
Obtaining access tokens for using in requests to API
Request
POST https://api.socialboards.com/token
Form Data Parameters
Name
Type
Required
Comments
grand_type
string
yes
Must be set to 'refresh_token'
refresh_token
string
yes
One of your refresh tokens
client_id
string
yes
Your Client ID
refresh_token
and client_id
could be found on your settings page
Response
{
"access_token": "eyJhbGciOiJIUzUxMiIsInR5cCI6IkpXVCJ9.eyJjaWQiOiIxIiwidHlwZSI6IkNvbW11bml0eSIsIm5iZiI6MTU4MjU1ODU1MiwiZXhwIjoxNTgyNTYyMTUyLCJpc3MiOiJzb2NpYWxib2FyZHMuY29tIiwiYXVkIjoiZjUyNWExNzAtOWM4OS00MGI3LWE2ODctNjczZWZkN2YyMThiIn0.rXiErxy4IlvhNs10Ovwg61mAa4cX36_E2Rw3nghD0R7KfxuIkeXBmQgPagqfEL1gk6d-W5pNQ_py2h3p23zM_g",
"token_type": "bearer",
"expires_in": 3599,
"refresh_token": "c5ngLXd0zVrgN6U7jdAw2EOGd9fj0GkZEFOvdd6yEHo="
}
Last updated
Was this helpful?