问题:
配置支付宝
UMSocialManager.default().setPlaform(.alipaySession, appKey: ali_key, appSecret: nil, redirectURL: redirect_url)
配置URl Types
都已完成。
然后调用
//分享链接
let msg = UMSocialMessageObject.init()
let shareobj = UMShareWebpageObject.shareObject(withTitle: title, descr: desc, thumImage: img)
shareobj?.webpageUrl = link
msg.shareObject = shareobj
UMSocialManager.default().share(to: types[dex], messageObject: msg, currentViewController: vc) { (id, error) in
if let e = error{
NSLog("分享失败\(e)")
showMsg("分享失败")
}else{
showMsg("分享成功")
}
}
直接跳转支付宝、并没有调起支付的好友列表。
解决方案:
1、进入支付宝开发者中心
2、查看应用的功能选项是否添加分享到支付宝、没有添加就添加。
3、让切换到应用信息、配置 bundle ID
然后重新运行就可以。