oAuth Authorisation process

We use the oAuth 2.0 Implicit workflow to grant access tokens.

Create the oAuth request

In your app, provide a Login button that makes a request, as follows.

oAuth Authorisation

GET https://api.tiny.plus/oauth/authorize

This will present a login screen and a permission screen to the user.

Query Parameters

https://[yoururl]?token_type=Bearer&expires_in=[TTL]&access_token=[your access token]&state=[your provided CSRF token]

Last updated