¶ Gitee 登录
更新时间: 2024-10-10 07:28:40
¶ 准备工作
在 gitee.com (opens new window) 及 Authing Console 控制台 (opens new window)进行配置,请参阅 Gitee 接入准备。
¶ 集成 Gitee 登录
¶ 第一步:添加 Gitee 依赖
在 swift package 搜索栏输入:https://github.com/Authing/authing-binary 。
Authing-binary (opens new window) 依赖于 Guard-iOS SDK (opens new window)。
依赖规则选择 Up to Next Major Version 1.0.0 。
Add Package 后勾选 Gitee 。
Gitee 依赖于 Guard-iOS 1.4.3 (opens new window) 之后版本。
¶ 第二步:初始化 Gitee 登录
import Guard
import Gitee
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
Authing.start(<#AUTHING_APP_ID#>)
// appId: Gitee ClientID
// redirectURI: Gitee 授权回调页
// scope: 默认为 userInfo
Gitee.register(appId: <#your_gitee_appid#>, redirectURI: <#your_gitee_redirecturi#>, <#your_gitee_scope#>)
}
¶ 第三步:发起 Gitee 登录授权
¶ Gitee 授权登录
func login(viewController: UIViewController, completion: @escaping Authing.AuthCompletion) -> Void
参数
- viewController 承载视图的 UIViewController
示例
Gitee.login(viewController: <#ViewController#>) { code, message, userInfo in
if (code == 200) {
// 登录成功
// userInfo
}
}
如果开发者自己集成 Gitee 登录,拿到 AuthorizationCode 后,可以调用以下 API 换取 Authing 用户信息:
¶ 通过 Gitee 授权码登录
func loginByGitee(_ code: String, completion: @escaping(Int, String?, UserInfo?) -> Void)
参数
code
Gitee 授权码
示例
AuthClient().loginByGitee(authCode) { code, message, userInfo in
if (code == 200) {
// userInfo:用户信息
}
}