WechatKit
SDK 1.8.5 _ Swift 5
pod 'WechatKit'
카르타고 설치
github "starboychina/WechatKit"
URL 구성표 설정
Xcode에서 프로젝트 설정을 선택하고 "TARGETS" 열을 선택한 다음 WeChat 오픈 플랫폼에 등록한 애플리케이션 ID에 대한 "정보" 탭 표시줄의 "URL 유형"에 "URL 구성표"를 추가합니다.
IOS9 이후에는 화이트리스트에 weixin을 추가해야 합니다(그림 참조).
또는 소스코드 모드에서 info.plist를 열고 다음 내용을 추가하세요.
< key >LSApplicationQueriesSchemes</ key >
< array >
< string >wechat</ string >
< string >weixin</ string >
</ array >
AppDelegate의 handlerOpenURL 및 openURL 메소드:
AppDelegate.swift에 WechatKit 가져오기 추가
/// iOS 9 以后将弃用 请用下面的方法 #20
/// -> NS_DEPRECATED_IOS(4_2, 9_0, "Please use application:openURL:options:") __TVOS_PROHIBITED;
func application ( _ application : UIApplication , open url : URL , sourceApplication : String ? , annotation : Any ) -> Bool {
return WechatManager . shared . handleOpenURL ( url )
// 如需要使用其他第三方可以 使用 || 连接 其他第三方库的handleOpenURL
// return WechatManager.shared.handleOpenURL(url) || TencentOAuth.HandleOpenURL(url) || WeiboSDK.handleOpenURL(url, delegate: SinaWeiboManager.shared) ......
}
/// iOS 9.0 以后请使用这个方法
/// Please use this (application:openURL:options:)
func application ( _ app : UIApplication , open url : URL , options : [ UIApplicationOpenURLOptionsKey : Any ] = [ : ] ) -> Bool {
return WechatManager . shared . handleOpenURL ( url )
// 如需要使用其他第三方可以 使用 || 连接 其他第三方库的handleOpenURL
// return WechatManager.shared.handleOpenURL(url) || TencentOAuth.HandleOpenURL(url) || WeiboSDK.handleOpenURL(url, delegate: SinaWeiboManager.shared) ......
}
WechatManager . appid = "微信开放平台,注册的应用程序id "
WechatManager . universalLink = "微信开放平台,注册的应用程序所对应的 Universal Links "
WechatManager . appSecret = "微信开放平台,注册的应用程序Secret "
WechatManager . shared . isInstalled ( )
WeChat을 사용하여 로그인
기본적으로 openid 및 access_token은 토큰이 여전히 유효한 경우 checkAuth를 호출하면 WeChat 클라이언트가 열리지 않고 토큰과 WeChat 서버를 직접 사용하여 인증 정보를 얻습니다.
WechatManager . shared . checkAuth { result in
switch result {
case . failure ( let errCode ) : //登录失败
print ( errCode )
case . success ( let value ) : //登录成功 value为([String: String]) 从微信返回的openid access_token 以及 refresh_token
print ( value ) //当前是在子线程,如需回到主线程调用 DispatchQueue.main.async { print(value) }
}
}
WechatManager . shared . getUserInfo { result in
switch result {
case . failure ( let errCode ) : //获取失败
print ( errCode )
case . success ( let value ) : //获取成功 value为([String: String]) 微信用户基本信息
print ( value ) //当前是在子线程,如需回到主线程调用 DispatchQueue.main.async { print(value) }
}
}
로그아웃
openid와 access_token은 기본적으로 기억되기 때문에 사용자 전환이 필요한 경우에는 로그아웃이 필요합니다.
WechatManager . shared . logout ( )
WechatManager . shared . shareDelegate = self
/**
分享
- parameter scence: 请求发送场景
- parameter image: 消息缩略图
- parameter title: 标题
- parameter description: 描述内容
- parameter url: 地址
- parameter extInfo: app分享信息(点击分享内容返回程序时,会传给WechatManagerShareDelegate.showMessage(message: String)
*/
WechatManager . shared . share ( scence : WXScene , image : UIImage ? , title : String , description : String , url : String ? = default , extInfo : String ? = default )
공유위임
//app分享后 点击分享返回时调用
func showMessage ( message : String )