pod 'WechatKit'
Installer Carthage
github "starboychina/WechatKit"
Définir le schéma d'URL
Dans Xcode, sélectionnez les paramètres de votre projet, sélectionnez la colonne « CIBLES » et ajoutez « Schéma d'URL » au « Type d'URL » dans la barre d'onglets « Informations » pour l'ID d'application que vous avez enregistré sur la plateforme ouverte WeChat.
Après IOS9, vous devez ajouter weixin à la liste blanche (comme indiqué sur l'image)
Ou ouvrez info.plist en mode code source et ajoutez le contenu suivant.
< key >LSApplicationQueriesSchemes</ key >
< array >
< string >wechat</ string >
< string >weixin</ string >
</ array >
Méthodes handleOpenURL et openURL d'AppDelegate :
Ajouter l'importation WechatKit dans AppDelegate.swift
/// 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 ( )
Connectez-vous en utilisant WeChat
Par défaut, openid et access_token seront mémorisés Lorsque le jeton est toujours valide, l'appel de checkAuth n'ouvrira pas le client WeChat et utilisera directement le jeton et le serveur WeChat pour obtenir les informations d'authentification.
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) }
}
}
Se déconnecter
Étant donné que openid et access_token sont mémorisés par défaut, vous devez vous déconnecter si vous devez changer d'utilisateur.
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 )
PartagerDélégation
//app分享后 点击分享返回时调用
func showMessage ( message : String )