├── .gitattributes ├── .gitignore ├── LICENSE-2.0.txt ├── MoreAuthentication.sln ├── NuGet.Config ├── README.md ├── global.json ├── samples └── SocialSample │ ├── Project_Readme.html │ ├── SocialSample.xproj │ ├── Startup.cs │ ├── config.json │ ├── project.json │ └── web.config └── src ├── DevZH.AspNetCore.Authentication.Baidu ├── BaiduAppBuilderExtensions.cs ├── BaiduDefaults.cs ├── BaiduHandler.cs ├── BaiduHelper.cs ├── BaiduMiddleware.cs ├── BaiduOptions.cs ├── DevZH.AspNetCore.Authentication.Baidu.xproj └── project.json ├── DevZH.AspNetCore.Authentication.Common.Sources ├── DevZH.AspNetCore.Authentication.Common.Sources.xproj ├── EnumExtensions.cs └── project.json ├── DevZH.AspNetCore.Authentication.Common ├── DevZH.AspNetCore.Authentication.Common.xproj ├── TokenType.cs └── project.json ├── DevZH.AspNetCore.Authentication.Douban ├── DevZH.AspNetCore.Authentication.Douban.xproj ├── DoubanAppBuilderExtensions.cs ├── DoubanDefaults.cs ├── DoubanHandler.cs ├── DoubanHelper.cs ├── DoubanMiddleware.cs ├── DoubanOptions.cs └── project.json ├── DevZH.AspNetCore.Authentication.NetEase ├── DevZH.AspNetCore.Authentication.NetEase.xproj ├── NetEaseAppBuilderExtensions.cs ├── NetEaseDefaults.cs ├── NetEaseHandler.cs ├── NetEaseHelper.cs ├── NetEaseMiddleware.cs ├── NetEaseOptions.cs └── project.json ├── DevZH.AspNetCore.Authentication.Qihoo ├── DevZH.AspNetCore.Authentication.Qihoo.xproj ├── QihooAppBuilderExtensions.cs ├── QihooDefaults.cs ├── QihooHandler.cs ├── QihooHelper.cs ├── QihooMiddleware.cs ├── QihooOptions.cs └── project.json ├── DevZH.AspNetCore.Authentication.Sina ├── DevZH.AspNetCore.Authentication.Sina.xproj ├── SinaAppBuilderExtensions.cs ├── SinaDefaults.cs ├── SinaHandler.cs ├── SinaHelper.cs ├── SinaMiddleware.cs ├── SinaOptions.cs └── project.json ├── DevZH.AspNetCore.Authentication.Taobao ├── DevZH.AspNetCore.Authentication.Taobao.xproj ├── TaobaoAppBuilderExtensions.cs ├── TaobaoDefaults.cs ├── TaobaoHandler.cs ├── TaobaoHelper.cs ├── TaobaoMiddleware.cs ├── TaobaoOptions.cs └── project.json ├── DevZH.AspNetCore.Authentication.Tencent ├── DevZH.AspNetCore.Authentication.Tencent.xproj ├── TencentAppBuilderExtensions.cs ├── TencentDefaults.cs ├── TencentHandler.cs ├── TencentHelper.cs ├── TencentMiddleware.cs ├── TencentOptions.cs └── project.json ├── DevZH.AspNetCore.Authentication.WeChat ├── DevZH.AspNetCore.Authentication.WeChat.xproj ├── WeChatAppBuilderExtensions.cs ├── WeChatDefaults.cs ├── WeChatHandler.cs ├── WeChatHelper.cs ├── WeChatMiddleware.cs ├── WeChatOptions.cs └── project.json ├── DevZH.AspNetCore.Authentication.XiaoMi ├── DevZH.AspNetCore.Authentication.XiaoMi.xproj ├── XiaoMiAppBuilderExtensions.cs ├── XiaoMiDefaults.cs ├── XiaoMiHandler.cs ├── XiaoMiHelper.cs ├── XiaoMiMiddleware.cs ├── XiaoMiOptions.cs └── project.json ├── DevZH.AspNetCore.Authentication.Yixin ├── DevZH.AspNetCore.Authentication.Yixin.xproj ├── YixinAppBuilderExtensions.cs ├── YixinDefaults.cs ├── YixinHandler.cs ├── YixinHelper.cs ├── YixinMiddleware.cs ├── YixinOptions.cs └── project.json └── DevZH.AspNetCore.Authentication.Youku ├── DevZH.AspNetCore.Authentication.Youku.xproj ├── YoukuAppBuilderExtensions.cs ├── YoukuDefaults.cs ├── YoukuHandler.cs ├── YoukuHelper.cs ├── YoukuMiddleware.cs ├── YoukuOptions.cs └── project.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/LICENSE-2.0.txt -------------------------------------------------------------------------------- /MoreAuthentication.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/MoreAuthentication.sln -------------------------------------------------------------------------------- /NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/NuGet.Config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/README.md -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- 1 | { 2 | "projects": [ "src" ] 3 | } 4 | -------------------------------------------------------------------------------- /samples/SocialSample/Project_Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/samples/SocialSample/Project_Readme.html -------------------------------------------------------------------------------- /samples/SocialSample/SocialSample.xproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/samples/SocialSample/SocialSample.xproj -------------------------------------------------------------------------------- /samples/SocialSample/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/samples/SocialSample/Startup.cs -------------------------------------------------------------------------------- /samples/SocialSample/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/samples/SocialSample/config.json -------------------------------------------------------------------------------- /samples/SocialSample/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/samples/SocialSample/project.json -------------------------------------------------------------------------------- /samples/SocialSample/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/samples/SocialSample/web.config -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Baidu/BaiduAppBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Baidu/BaiduAppBuilderExtensions.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Baidu/BaiduDefaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Baidu/BaiduDefaults.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Baidu/BaiduHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Baidu/BaiduHandler.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Baidu/BaiduHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Baidu/BaiduHelper.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Baidu/BaiduMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Baidu/BaiduMiddleware.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Baidu/BaiduOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Baidu/BaiduOptions.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Baidu/DevZH.AspNetCore.Authentication.Baidu.xproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Baidu/DevZH.AspNetCore.Authentication.Baidu.xproj -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Baidu/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Baidu/project.json -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Common.Sources/DevZH.AspNetCore.Authentication.Common.Sources.xproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Common.Sources/DevZH.AspNetCore.Authentication.Common.Sources.xproj -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Common.Sources/EnumExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Common.Sources/EnumExtensions.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Common.Sources/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Common.Sources/project.json -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Common/DevZH.AspNetCore.Authentication.Common.xproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Common/DevZH.AspNetCore.Authentication.Common.xproj -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Common/TokenType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Common/TokenType.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Common/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Common/project.json -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Douban/DevZH.AspNetCore.Authentication.Douban.xproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Douban/DevZH.AspNetCore.Authentication.Douban.xproj -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Douban/DoubanAppBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Douban/DoubanAppBuilderExtensions.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Douban/DoubanDefaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Douban/DoubanDefaults.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Douban/DoubanHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Douban/DoubanHandler.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Douban/DoubanHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Douban/DoubanHelper.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Douban/DoubanMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Douban/DoubanMiddleware.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Douban/DoubanOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Douban/DoubanOptions.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Douban/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Douban/project.json -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.NetEase/DevZH.AspNetCore.Authentication.NetEase.xproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.NetEase/DevZH.AspNetCore.Authentication.NetEase.xproj -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.NetEase/NetEaseAppBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.NetEase/NetEaseAppBuilderExtensions.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.NetEase/NetEaseDefaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.NetEase/NetEaseDefaults.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.NetEase/NetEaseHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.NetEase/NetEaseHandler.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.NetEase/NetEaseHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.NetEase/NetEaseHelper.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.NetEase/NetEaseMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.NetEase/NetEaseMiddleware.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.NetEase/NetEaseOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.NetEase/NetEaseOptions.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.NetEase/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.NetEase/project.json -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Qihoo/DevZH.AspNetCore.Authentication.Qihoo.xproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Qihoo/DevZH.AspNetCore.Authentication.Qihoo.xproj -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Qihoo/QihooAppBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Qihoo/QihooAppBuilderExtensions.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Qihoo/QihooDefaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Qihoo/QihooDefaults.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Qihoo/QihooHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Qihoo/QihooHandler.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Qihoo/QihooHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Qihoo/QihooHelper.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Qihoo/QihooMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Qihoo/QihooMiddleware.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Qihoo/QihooOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Qihoo/QihooOptions.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Qihoo/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Qihoo/project.json -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Sina/DevZH.AspNetCore.Authentication.Sina.xproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Sina/DevZH.AspNetCore.Authentication.Sina.xproj -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Sina/SinaAppBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Sina/SinaAppBuilderExtensions.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Sina/SinaDefaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Sina/SinaDefaults.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Sina/SinaHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Sina/SinaHandler.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Sina/SinaHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Sina/SinaHelper.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Sina/SinaMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Sina/SinaMiddleware.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Sina/SinaOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Sina/SinaOptions.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Sina/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Sina/project.json -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Taobao/DevZH.AspNetCore.Authentication.Taobao.xproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Taobao/DevZH.AspNetCore.Authentication.Taobao.xproj -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Taobao/TaobaoAppBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Taobao/TaobaoAppBuilderExtensions.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Taobao/TaobaoDefaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Taobao/TaobaoDefaults.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Taobao/TaobaoHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Taobao/TaobaoHandler.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Taobao/TaobaoHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Taobao/TaobaoHelper.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Taobao/TaobaoMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Taobao/TaobaoMiddleware.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Taobao/TaobaoOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Taobao/TaobaoOptions.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Taobao/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Taobao/project.json -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Tencent/DevZH.AspNetCore.Authentication.Tencent.xproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Tencent/DevZH.AspNetCore.Authentication.Tencent.xproj -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Tencent/TencentAppBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Tencent/TencentAppBuilderExtensions.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Tencent/TencentDefaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Tencent/TencentDefaults.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Tencent/TencentHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Tencent/TencentHandler.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Tencent/TencentHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Tencent/TencentHelper.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Tencent/TencentMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Tencent/TencentMiddleware.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Tencent/TencentOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Tencent/TencentOptions.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Tencent/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Tencent/project.json -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.WeChat/DevZH.AspNetCore.Authentication.WeChat.xproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.WeChat/DevZH.AspNetCore.Authentication.WeChat.xproj -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.WeChat/WeChatAppBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.WeChat/WeChatAppBuilderExtensions.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.WeChat/WeChatDefaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.WeChat/WeChatDefaults.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.WeChat/WeChatHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.WeChat/WeChatHandler.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.WeChat/WeChatHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.WeChat/WeChatHelper.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.WeChat/WeChatMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.WeChat/WeChatMiddleware.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.WeChat/WeChatOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.WeChat/WeChatOptions.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.WeChat/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.WeChat/project.json -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.XiaoMi/DevZH.AspNetCore.Authentication.XiaoMi.xproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.XiaoMi/DevZH.AspNetCore.Authentication.XiaoMi.xproj -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.XiaoMi/XiaoMiAppBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.XiaoMi/XiaoMiAppBuilderExtensions.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.XiaoMi/XiaoMiDefaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.XiaoMi/XiaoMiDefaults.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.XiaoMi/XiaoMiHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.XiaoMi/XiaoMiHandler.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.XiaoMi/XiaoMiHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.XiaoMi/XiaoMiHelper.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.XiaoMi/XiaoMiMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.XiaoMi/XiaoMiMiddleware.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.XiaoMi/XiaoMiOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.XiaoMi/XiaoMiOptions.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.XiaoMi/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.XiaoMi/project.json -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Yixin/DevZH.AspNetCore.Authentication.Yixin.xproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Yixin/DevZH.AspNetCore.Authentication.Yixin.xproj -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Yixin/YixinAppBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Yixin/YixinAppBuilderExtensions.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Yixin/YixinDefaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Yixin/YixinDefaults.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Yixin/YixinHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Yixin/YixinHandler.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Yixin/YixinHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Yixin/YixinHelper.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Yixin/YixinMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Yixin/YixinMiddleware.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Yixin/YixinOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Yixin/YixinOptions.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Yixin/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Yixin/project.json -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Youku/DevZH.AspNetCore.Authentication.Youku.xproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Youku/DevZH.AspNetCore.Authentication.Youku.xproj -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Youku/YoukuAppBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Youku/YoukuAppBuilderExtensions.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Youku/YoukuDefaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Youku/YoukuDefaults.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Youku/YoukuHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Youku/YoukuHandler.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Youku/YoukuHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Youku/YoukuHelper.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Youku/YoukuMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Youku/YoukuMiddleware.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Youku/YoukuOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Youku/YoukuOptions.cs -------------------------------------------------------------------------------- /src/DevZH.AspNetCore.Authentication.Youku/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noliar/MoreAuthentication/HEAD/src/DevZH.AspNetCore.Authentication.Youku/project.json --------------------------------------------------------------------------------