OAuth 2.0 Form Post Response Mode
Spec: openid.net/specs/oauth-v2-form-post-response-mode-1_0.htmlStatus: Full
Form Post Response Mode lets the authorization server deliver authorization response parameters via an auto-submitting HTML form instead of a redirect URL, which keeps tokens out of browser history and referrer headers.
Implemented
response_mode=form_post— accepted on the/authorizeendpoint.- Auto-submitting HTML form — response parameters (e.g.
code,state,id_token) are rendered as hidden inputs in a form that posts toredirect_urion load. - Compatibility with all response types — works with
code,id_token, and hybrid response types. - Advertised in discovery —
form_postappears inresponse_modes_supportedin/.well-known/openid-configuration.