OAuth2 (swift)
OAuth2Client
处理 iOS 上的 OAuth2 流(使用 SFSafariViewController
(iOS11 上的 SFAuthenticationSession
)的基础类,目前支持 OAuth2CodeGrant
,在 Facebook、Google 和 Github 上测试过(示例程序包含所有代码)。
OAuth2Client
支持在认证流程中自定义 UI 更新处理器。
要求
- iOS 9.0+
- Xcode 9.0
- Swift 4.0
安装
Cocoapods
CocoaPods 是一款 Cocoa 项目的依赖管理器。您可以使用以下命令安装它
$ gem install cocoapods
要使用 CocoaPods 在您的 Xcode 项目中集成 Alamofire,请在您的 Podfile
中指定它
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '9.0'
use_frameworks!
target '<Your Target Name>' do
pod 'OAuth2-Swift'
end
然后,运行以下命令
$ pod install
手动方式
将“source”文件夹拖拽到您的 Xcode 项目中。
如何使用
检查示例应用。
许可协议
MIT 许可协议 (MIT)
Copyright (c) 2018 MuhammadBassio
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.