无法解析 json 错误 instamojo

could not parse json error instamojo

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

但是当我使用 Instamojo 提供的代码发起付款时。结果状态为假,我收到错误消息 "could not parse 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)
                }
            })
        }

如果您正确实施了所有内容,那么它一定能正常工作。 您是否检查过服务器上的访问令牌 php 脚本。