我已经在我的iOS应用程序中集成了instamojo支付网关。我目前正在使用Xcode 9.2和swift 4.0。我已经通过Cocoapods安装了最新的SDK。
我还在服务器上设置了访问令牌url。
但当我使用Instamojo提供的代码开始付款时。结果状态为false,我收到错误消息“无法分析json”

IMConfiguration.sharedInstance.setupOrder(purpose: "buying", buyerName: "Shardul", emailId: "[email protected]", mobile: "7875432991", amount: "20", environment: .Test, on: self) { (success, message) in
            DispatchQueue.main.asyncAfter(deadline: DispatchTime.now() + 1, execute: {
                if success {
                   print(message)
                } else {
                   print(message)
                }
            })
        }

最佳答案

如果你已经正确地实现了每件事,那么它必须工作。
您检查过服务器上的访问令牌php脚本了吗。

07-26 00:28