mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-03 21:16:26 +01:00 
			
		
		
		
	Weibo oauth
This commit is contained in:
		
							parent
							
								
									516baa4531
								
							
						
					
					
						commit
						337eef2ee5
					
				@ -10,7 +10,6 @@ github.com/go-sql-driver/mysql =
 | 
			
		||||
github.com/lib/pq = 
 | 
			
		||||
github.com/qiniu/log = 
 | 
			
		||||
github.com/robfig/cron = 
 | 
			
		||||
code.google.com/p/goauth2 = 
 | 
			
		||||
github.com/Unknwon/com = 
 | 
			
		||||
github.com/Unknwon/cae = 
 | 
			
		||||
github.com/Unknwon/goconfig = 
 | 
			
		||||
@ -20,6 +19,7 @@ github.com/gogits/git =
 | 
			
		||||
github.com/gogits/gfm = 
 | 
			
		||||
github.com/gogits/cache = 
 | 
			
		||||
github.com/gogits/session = 
 | 
			
		||||
github.com/gogits/oauth2 = 
 | 
			
		||||
 | 
			
		||||
[res]
 | 
			
		||||
include = templates|public|conf
 | 
			
		||||
 | 
			
		||||
@ -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
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user