Update oauth.go

OAuthURL 预留给cdn前缀,通过server地址判断onedrive类型
This commit is contained in:
上海明馨科技有限公司 2020-09-19 22:50:25 +08:00 committed by GitHub
parent 40414fe6ae
commit 688dd7ef65
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -32,7 +32,8 @@ func (client *Client) OAuthURL(ctx context.Context, scope []string) string {
// getOAuthEndpoint 根据指定的AuthURL获取详细的认证接口地址
func (client *Client) getOAuthEndpoint() *oauthEndpoint {
base, err := url.Parse(client.Endpoints.OAuthURL)
//base, err := url.Parse(client.Endpoints.OAuthURL)//通过api地址判断oauth地址,OAuthURL地址留给cdn替换前缀
base, err := url.Parse(client.Endpoints.EndpointURL)
if err != nil {
return nil
}
@ -44,7 +45,7 @@ func (client *Client) getOAuthEndpoint() *oauthEndpoint {
case "login.live.com":
token, _ = url.Parse("https://login.live.com/oauth20_token.srf")
authorize, _ = url.Parse("https://login.live.com/oauth20_authorize.srf")
case "login.chinacloudapi.cn":
case "microsoftgraph.chinacloudapi.cn":
client.Endpoints.isInChina = true
token, _ = url.Parse("https://login.chinacloudapi.cn/common/oauth2/v2.0/token")
authorize, _ = url.Parse("https://login.chinacloudapi.cn/common/oauth2/v2.0/authorize")