Push authorization request
POST/par
Accepts a URL-encoded OAuth 2.0 authorization request body and stores it in nevisAuth's
out-of-context data store, returning the request_uri reference and its lifetime in seconds.
The client must authenticate using the configured method (e.g., HTTP Basic with client credentials).
The returned request_uri takes the form urn:ietf:params:oauth:request_uri:... and must be
presented at the authorization endpoint before it expires.
Request
Header Parameters
authorization string
- */*
Body
string
Responses
- 201
- 400
- 401
- 500
Authorization request stored; response contains request_uri and expires_in
- application/json
- Schema
- Example (from schema)
Schema
object
{
"expires_in": 90,
"request_uri": "urn:ietf:params:oauth:request_uri:E_BG_ceyioYYYjo3JMudq-P8eZNEmMai6kBB34cy--A"
}
Authorization request is not valid or a request_uri is already present in the body
Unauthenticated or unauthorized client
Unexpected server-side processing error
Loading...