Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: remove codeChallenge and codeChallengeMethod #136

Merged
merged 3 commits into from
Dec 20, 2024
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,6 @@ class OAuthAuthorizationService internal constructor(
locale?.let { additionalParameters["locale"] = it }

// Authorize Options
options?.codeChallenge?.let { additionalParameters["code_challenge"] = it }
options?.codeChallengeMethod?.let { additionalParameters["code_challenge_method"] = it.name }
options?.idpHint?.let { additionalParameters["idp_hint"] = it }
options?.deviceDescription?.let { additionalParameters["metaData.device.description"] = it }
options?.userCode?.let { additionalParameters["user_code"] = it }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ import android.content.Intent
* @property redirectUri The redirect URI to be used for the OAuth authorize request.
* Default is "io.fusionauth.app:/oauth2redirect".
* @property idpHint The identity provider hint to be used for the OAuth authorize request.
* @property codeChallenge The code challenge to be used for the OAuth authorize request.
* @property codeChallengeMethod The code challenge method to be used for the OAuth authorize request.
* @property loginHint An optional email address or top level domain that can allow you to bypass the FusionAuth login
* page when using managed domains.
* @property deviceDescription An optional human-readable description of the device used during login.
Expand All @@ -26,8 +24,6 @@ import android.content.Intent
data class OAuthAuthorizeOptions(
val redirectUri: String = "io.fusionauth.app:/oauth2redirect",
val idpHint: String? = null,
val codeChallenge: String? = null,
val codeChallengeMethod: OAuthCodeChallengeMethod? = null,
val loginHint: String? = null,
val deviceDescription: String? = null,
val nonce: String? = null,
Expand Down

This file was deleted.

Loading