-
Notifications
You must be signed in to change notification settings - Fork 270
Closed
Labels
priority: p2Moderately-important priority. Fix may not be included in next release.Moderately-important priority. Fix may not be included in next release.
Description
Environment details
- Meet (but not API-specific)
- OS type and version: Linux
- Java version: OpenJDK 17
- version(s):
Steps to reproduce
- Create a UserAuthorizer with PKCE enabled
- Open authorization URL in browser
Code example
UserAuthorizer authorizer = UserAuthorizer.newBuilder()
.setClientId(clientId)
.setCallbackUri(callbackUri)
.setScopes(SCOPES)
.setPKCEProvider(new DefaultPKCEProvider())
.build()
URL authorizationUrl = authorizer.getAuthorizationUrl("me" "", null);
System.out.printf("Open the following URL to authorize access: %s\n",
authorizationUrl.toExternalForm());Stack trace
None. Error is when attempting authorization, fails with error:
Access blocked: Authorization Error
Code Challenge must be base64 encoded. Learn more about this error
External references such as API reference guides
Any additional information below
Following these steps guarantees the quickest resolution possible.
Thanks!
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
priority: p2Moderately-important priority. Fix may not be included in next release.Moderately-important priority. Fix may not be included in next release.