1
0
mirror of synced 2026-02-04 16:57:48 +08:00

Merge branch 'dev' of github.com:justauth/JustAuth into dev

g the commit.
This commit is contained in:
yadong.zhang
2024-08-03 16:35:53 +08:00

View File

@@ -382,6 +382,7 @@ public enum AuthDefaultSource implements AuthSource {
}, },
/** /**
* Google * Google
* 端点地址https://accounts.google.com/.well-known/openid-configuration
*/ */
GOOGLE { GOOGLE {
@Override @Override
@@ -391,12 +392,12 @@ public enum AuthDefaultSource implements AuthSource {
@Override @Override
public String accessToken() { public String accessToken() {
return "https://www.googleapis.com/oauth2/v4/token"; return "https://oauth2.googleapis.com/token";
} }
@Override @Override
public String userInfo() { public String userInfo() {
return "https://www.googleapis.com/oauth2/v3/userinfo"; return "https://openidconnect.googleapis.com/v1/userinfo";
} }
@Override @Override