Begin an OAuth handshake to link a provider to the current account
POST/api/auth/oauth/{provider}/link
linkOauth
Session-authenticated caller only. The callback attaches the returned identity to the existing account; fails if the identity is already linked to a different one. **Attaching a login method is credential management (ADR 0069 §6), so every bearer access token — including unrestricted and legacy tokens — is refused** with `403 { error: "forbidden" }` before the handshake starts. The handshake ends in a session cookie, which carries no token grant and would therefore outrank the token that started it. **Requires sudo-mode** (plans/auth-flows.md slice #5) — *unless* the account holds no step-up credential yet (a passwordless / OAuth-claimed account with no password, TOTP, or passkey, which has no way to acquire sudo). Once any step-up credential exists this is sudo-gated again. Returns `403 { error: "sudo_required", challenge: "password"|"totp" }` if the sudo window has elapsed.
Requires authentication using a session cookie — see tokens and scopes.
curl
curl -X POST 'https://neosource.dev/api/auth/oauth/PROVIDER/link' \
-b 'ns_session=$NEOSOURCE_SESSION' \
-H 'Content-Type: application/json' \
-d '{"intent":"string"}'fetch
fetch("https://neosource.dev/api/auth/oauth/PROVIDER/link", {
method: "POST",
headers: {
"Content-Type": "application/json",
},
credentials: "include",
body: JSON.stringify({"intent":"string"}),
});Path parameters
providerrequiredOne of: `github`. Extend as more providers come online.
Request bodyrequired
application/json
Responses
200Redirect URL
application/json
403Forbidden — one of: forbidden, sudo_required
application/json
Standard errors
Bodies documented once for the whole API — see standard errors.
- 400Bad Request — one of: invalid_input
- 401Authentication required
- 429Rate limited — retry after the `Retry-After` header
- 500Internal server error
- 502Bad Gateway — one of: upstream
- 503Service temporarily unavailable / at capacity — retry after the `Retry-After` header
- 504Gateway timeout — the request exceeded the server's handling budget