InternetDataInternetData

Authorize

GET
/oauth/authorize

The browser entry point for the authorization-code flow. This is a redirect target, not something to call from code.

An unknown client_id or an unregistered redirect_uri is shown to the USER and never redirected, because sending an error to an address we have not verified belongs to you is how an open redirector works. Everything else comes back to your redirect_uri with error, your state, and iss.

Query Parameters

client_id*string
redirect_uri*string
response_type*string
Value in"code"
code_challenge*string
code_challenge_method?string

S256 only. plain is refused rather than downgraded.

Value in"S256"
scope?string
state?string

Returned unchanged. Use it to bind the response to your request.

resource?string

RFC 8707. What the token is FOR, so it cannot be replayed elsewhere.

Response Body

curl -X GET "https://internetdata.io/oauth/authorize?client_id=string&redirect_uri=string&response_type=code&code_challenge=string"
Empty
Empty