-
Notifications
You must be signed in to change notification settings - Fork 169
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
微信支付完成后,不能回到APP #100
Comments
配置了 |
我也遇到改问题,回调方法不响应 |
微信 app 支付,URL Schemes 一定要有一个是微信的 appid(是微信的 "wx" 开头的),否则是跳不回来的。而且必须是你支付的那一个 appid,换任何其他的都不行。 回调方法不响应。先确认回调的 URL 是什么,handleOpenURL 方法掉了吗,返回什么,YES/true 还是 NO/false? |
@samurai00 之前用的版本是2.2.22微信回调都正常,更新至2.2.29版本后回调就没有响应;已检查URL Schemes都一样; |
@Mr-nan 2.2.29 版本,微信官方的 SDK 有变动。“微信支付支持 Universal Links 方式跳转” Universal Links 配置方法请参考 Apple 官方文档及微信相关文档 回调也不是原来的了,都是 Universal Links 相关的 // 微信使用 Universal Links 的情况,需要该方法
func application(_ application: UIApplication, continue userActivity: NSUserActivity, restorationHandler: @escaping ([UIUserActivityRestoring]?) -> Void) -> Bool {
var ret = Pingpp.handleContinue(userActivity, withCompletion: nil)
if !ret {
// 其他逻辑
// ret = 其他处理
}
return ret
} 如果还不行,那你需要提供详细的信息。
你要确认是不是稍微改了一下部分相关的调用? |
请问解决了吗? |
根据文档该配的都配了,支付后直接就停留在微信界面呢,不能回到自己的APP, 我测试了官方demo也是这样? 请问这个问题该如何解决???
The text was updated successfully, but these errors were encountered: