Signonify Mini Apps
  1. Authenticate (OAuth2)
Signonify Mini Apps
  • Getting Started
  • Authenticate (OAuth2)
    • /oauth/authorize
      GET
    • /oauth/token
      POST
    • /oauth/userinfo
      GET
  1. Authenticate (OAuth2)

/oauth/token

POST
/oauth/token
oauth2
Exchange your client ID, client secret and code (get from /oauth/authorize) for an access token.

Request

Body Params application/x-www-form-urlencoded
client_id
string 
required
Client ID
Example:
d1e23a933f0fe6db11dd403d0ff948cf
client_secret
string 
required
Client Secret
Example:
46a442b4642e031f42a85cf9ddfc197b
code
string 
required
Code
Example:
188fe510f49adb5a53e594d9f2b8739e

Responses

🟢200OK
application/json
Body
access_token
string 
required
Example
{
    "access_token": "33f7f1c04f0bfaa0429d00d34f0f380a"
}
Modified at 2024-09-04 08:43:04
Previous
/oauth/authorize
Next
/oauth/userinfo
Built with