OAuth consent proxy
const url = 'https://example.com/api/oauth/consent';const options = { method: 'POST', headers: { cookie: 'sb-access-token=<sb-access-token>', 'Content-Type': 'application/json' }, body: '{}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://example.com/api/oauth/consent \ --header 'Content-Type: application/json' \ --cookie sb-access-token=<sb-access-token> \ --data '{}'Claims the authorization and proxies the decision to Supabase OAuth. Requires a first-party portal session JWT in the Authorization header: a delegated OAuth access token is refused with 401, so a client cannot approve its own authorization or widen its own scopes.
Authorizations
Section titled “Authorizations ”Request Body required
Section titled “Request Body required ”object
Responses
Section titled “ Responses ”Consent result
object
Invalid request
object
Human-readable error message
Stable machine-readable error code for client branching
First validation message per field path
object
Structured validation issues (Zod)
object
Seconds until rate limit resets (429 responses)
Not authenticated
object
Human-readable error message
Stable machine-readable error code for client branching
First validation message per field path
object
Structured validation issues (Zod)
object
Seconds until rate limit resets (429 responses)
True if re-linking GitHub may fix the issue