foxsofter / microsoft-owin-security-sinaweibo

Middleware that enables an application to support SinaWeibo OAuth 2.0 authentication workflow.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Microsoft.Owin.Security.SinaWeibo

Middleware that enables an application to support SinaWeibo OAuth 2.0 authentication workflow.

More information please visit: Katana Project

Please follow my weibo: 瘦不拉叽的SNAKE

Install from nuget: PM> Install-Package Microsoft.Owin.Security.SinaWeibo -Pre(package url)

Or search Microsoft.Owin.Security.SinaWeibo in Nuget package manager, and make sure you selected the Include Prerelease selection of the filter dropdownlist.

这是一个使用新浪账号的第三方账户登录的owin中间件.

更多内容请访问: Katana Project

请关注我的微博: 瘦不拉叽的SNAKE

从Nuget中安装:

在Nuget控制台中输入: Install-Package Microsoft.Owin.Security.SinaWeibo -Pre(package网址) 或在Nuget的包管理器中搜索Microsoft.Owin.Security.SinaWeibo,并确保在包过滤的下拉菜单中选择Include Prerelease(包括预发行版)选项. How to use:

//在你的"Startup"类的"Configure"方法中添加以下代码
//别忘了添加Owin的命名空间.
app.UseSinaWeiboAuthentication(
    appId: "your app id",
    appSecret: "your app secret");

最后:

  1. 进入新浪微博开放平台的管理中心页面选择你要使用的应用.

  2. 点击左侧"应用信息"->"高级信息"

  3. 点击右边的"OAuth2.0 授权设置"的编辑链接

  4. 填写"授权回调页",填入你的网站地址(如:http://weibo.com),网址最后添加上/signin-sinaWeibo,最终组成类似http://weibo.com/signin-sinaWeibo的网址.

  5. 点击"提交".

About

Middleware that enables an application to support SinaWeibo OAuth 2.0 authentication workflow.

License:Apache License 2.0