1
0
mirror of synced 2026-04-25 11:08:49 +08:00

📌 升级 FaceBook API 版本到 v9.0

This commit is contained in:
yadong.zhang
2021-01-01 10:40:18 +08:00
parent f5e3c225f6
commit 824c68356d
2 changed files with 5 additions and 4 deletions

View File

@@ -315,17 +315,17 @@ public enum AuthDefaultSource implements AuthSource {
FACEBOOK {
@Override
public String authorize() {
return "https://www.facebook.com/v3.3/dialog/oauth";
return "https://www.facebook.com/v9.0/dialog/oauth";
}
@Override
public String accessToken() {
return "https://graph.facebook.com/v3.3/oauth/access_token";
return "https://graph.facebook.com/v9.0/oauth/access_token";
}
@Override
public String userInfo() {
return "https://graph.facebook.com/v3.3/me";
return "https://graph.facebook.com/v9.0/me";
}
},
/**