Authorize Info
GET
/api/v1/oauth/authorize/info
const url = 'https://example.com/api/v1/oauth/authorize/info?req=example';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'https://example.com/api/v1/oauth/authorize/info?req=example'Display info for the consent screen: WHERE the data would go.
Broker-session-guarded (the consent page is behind the portal login). Lets the page show the requesting client’s destination host so a broker can spot a look-alike before approving, important now that any client can self- register via DCR.
Parameters
Section titled “Parameters”Query Parameters
Section titled “Query Parameters”req
required
Req
string
Responses
Section titled “Responses”Successful Response
Media typeapplication/json
Examplegenerated
exampleValidation Error
Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationErrorobject
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Examplegenerated
{ "detail": [ { "loc": [ "example" ], "msg": "example", "type": "example" } ]}