Google OAuth2 PlayGround returns “Unauthorized Client”
问题 clientId = xxxxxx clientSecret = xxxxxxxx applicationHost = xxxxxxxxx My authorization code request: OAuthClientRequest oAuthClientRequest = OAuthClientRequest .authorizationProvider(OAuthProviderType.GOOGLE) .setResponseType("code") .setClientId(clientId) .setParameter("access_type", "online") .setRedirectURI(applicationHost + "auth/google/callback") .setScope("https://www.googleapis.com/auth/plus.login") .buildQueryMessage(); response.sendRedirect(oAuthClientRequest.getLocationUri()); I am