@@ -15,10 +15,6 @@ public struct OAuthAuthorizeOptions {
1515 let redirectUri : String
1616 /// The identity provider hint to be used for the OAuth authorize request.
1717 let idpHint : String ?
18- /// The code challenge to be used for the OAuth authorize request.
19- let codeChallenge : String ?
20- /// The code challenge method to be used for the OAuth authorize request.
21- let codeChallengeMethod : OAuthCodeChallengeMethod ?
2218 /// An optional email address or top level domain that can allow you to bypass the FusionAuth login
2319 /// page when using managed domains.
2420 let loginHint : String ?
@@ -37,8 +33,6 @@ public struct OAuthAuthorizeOptions {
3733 bundleId: String = Bundle . main. bundleIdentifier ?? " " ,
3834 redirectUriSuffix: String = " :/oauth2redirect/ios-provider " ,
3935 idpHint: String ? = nil ,
40- codeChallenge: String ? = nil ,
41- codeChallengeMethod: OAuthCodeChallengeMethod ? = nil ,
4236 loginHint: String ? = nil ,
4337 deviceDescription: String ? = nil ,
4438 nonce: String ? = nil ,
@@ -49,8 +43,6 @@ public struct OAuthAuthorizeOptions {
4943 self . bundleId = bundleId
5044 self . redirectUri = bundleId + redirectUriSuffix
5145 self . idpHint = idpHint
52- self . codeChallenge = codeChallenge
53- self . codeChallengeMethod = codeChallengeMethod
5446 self . loginHint = loginHint
5547 self . deviceDescription = deviceDescription
5648 self . nonce = nonce
0 commit comments