项目地址:
https://github.com/netnr/Netnr.Loginhttps://github.com/netnr/np
接入微博登录需要做哪些事情:
网站地址
,并得到App Key
、App Secret
authorize 接口:https://api.weibo.com/oauth2/authorize
获取用户授权,即页面跳转微博登录界面,GET
请求,得到code
access_token 接口:https://api.weibo.com/oauth2/access_token
根据code
得到access_token
,用户授权的唯一
票据, POST
请求
get_token_info 接口:https://api.weibo.com/oauth2/get_token_info
根据access_token
得到授权信息uid
,POST
请求
users/show 接口:https://api.weibo.com/2/users/show.json
根据access_token
、uid
获取用户信息,GET
请求
Install-Package Netnr.Login
参考项目地址给出的示例代码