We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df46fd3 commit 1b0f734Copy full SHA for 1b0f734
oauth2_http/java/com/google/auth/oauth2/OAuth2Utils.java
@@ -61,8 +61,8 @@
61
class OAuth2Utils {
62
static final String SIGNATURE_ALGORITHM = "SHA256withRSA";
63
64
- static final URI TOKEN_SERVER_URI = URI.create("https://accounts.google.com/o/oauth2/token");
65
- static final URI TOKEN_REVOKE_URI = URI.create("https://accounts.google.com/o/oauth2/revoke");
+ static final URI TOKEN_SERVER_URI = URI.create("https://oauth2.googleapis.com/token");
+ static final URI TOKEN_REVOKE_URI = URI.create("https://oauth2.googleapis.com/revoke");
66
static final URI USER_AUTH_URI = URI.create("https://accounts.google.com/o/oauth2/auth");
67
68
static final HttpTransport HTTP_TRANSPORT = new NetHttpTransport();
0 commit comments