Oauth2 Authorization
Production Env
Staging Env
https://api.staging.nuvosphere.io
Step1 - Initiate authorization
Request for log in
description
Step2 - Receive authorized code
After initiating authorization, Nuvo will return_url and code
The developer will receive url(https://demo.dapp.com/callback), keep the code for the access token use
Step3 - Request Access Token
Request access token
GET
/api/v1/oauth2/access_token
Query String: ?appid={appid}&code={code}
code: the code kept from step2
appid: app id that can be acquired from Nuvo One
Request Body
Name
Type
Description
code*
String
the code kept from step2
appid*
String
Nuvo middleware app id
Last updated