Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions library/java/net/openid/appauth/AuthorizationRequest.java
Original file line number Diff line number Diff line change
Expand Up @@ -264,6 +264,14 @@ public static final class ResponseMode {
* <http://openid.net/specs/oauth-v2-multiple-response-types-1_0.html#rfc.section.2.1>"
*/
public static final String FRAGMENT = "fragment";

/**
* Instructs the authorization server to send response parameters using
* the HTTP POST method.
* @see "OAuth 2.0 Multiple Response Type Encoding Practices, Section 2.1
* <https://openid.net/specs/oauth-v2-form-post-response-mode-1_0.html>"
*/
public static final String FORM_POST = "form_post";
}

@VisibleForTesting
Expand Down