无法解析json错误instamojo

时间:2018-05-28 10:30:01

标签: ios swift instamojo

我在我的iOS应用程序中集成了instamojo支付网关。我目前正在使用Xcode 9.2和swift 4.0。我已经通过Cocoapods安装了最新的SDK。 我还在我的服务器上设置了访问令牌URL。

但是当我使用Instamojo提供的代码发起付款时。结果状态为false,我收到错误消息“无法解析json”

IMConfiguration.sharedInstance.setupOrder(purpose: "buying", buyerName: "Shardul", emailId: "tester@gmail.com", 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)
                }
            })
        }

1 个答案:

答案 0 :(得分:1)

如果您已正确实施所有内容,那么它必须有效。 您是否检查过您的服务器上的令牌php脚本?