In order to create access tokens for a specific vPlan environment, the Resource Owner has to authorize the app to access their vPlan environment.To request authorization, the Resource Owner should be redirected to https://developer.mostwanted.io/api/v1/oauth/authorizeThe Resource Owner will be asked to log in to vPlan and allow this app to access the data in his vPlan environment.
Request
Query Params
client_id
stringÂ
required
Client ID of the app
Example:
176b8c0c-be44-4b0a-805f-28252932b48e
redirect_uri
stringÂ
required
A valid, TLS secured, redirect URI
Example:
https://example.com/callback
response_type
enum<string>Â
required
Response type for the request
Allowed value:
code
state
stringÂ
optional
Unique state, to prevent man-in-the-middle attacks
Example:
33cab0a8-ea0c-48e4-a090-71e9b95ab831
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl--location--request GET 'https://api.vplan.com/v1/oauth/authorize?client_id&redirect_uri&response_type'