1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-23 10:48:37 +00:00

Weibo oauth

This commit is contained in:
Unknown
2014-04-14 06:29:47 -04:00
parent 516baa4531
commit 337eef2ee5
2 changed files with 2 additions and 3 deletions

View File

@@ -371,7 +371,6 @@ func (s *SocialWeibo) SetRedirectUrl(url string) {
func (s *SocialWeibo) UserInfo(token *oauth.Token, _ *url.URL) (*BasicUserInfo, error) {
transport := &oauth.Transport{Token: token}
var data struct {
Id int64 `json:"id"`
Name string `json:"name"`
}
var err error
@@ -390,7 +389,7 @@ func (s *SocialWeibo) UserInfo(token *oauth.Token, _ *url.URL) (*BasicUserInfo,
return nil, err
}
return &BasicUserInfo{
Identity: base.StrTo(data.Id).String(),
Identity: token.Extra["id_token"],
Name: data.Name,
}, nil
return nil, nil