could not parse json error instamojo

184 Views Asked by At

I have integrated instamojo payment gateway in my iOS application. I am currently using Xcode 9.2 with swift 4.0. I have installed latest SDK through Cocoapods. I have also setup access token url on my server.

but when i initiate a payment by using the code provided by Instamojo. the resultant status was false and i got error message "could not parse 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)
                }
            })
        }
1

There are 1 best solutions below

2
On BEST ANSWER

If you have implemented everything correctly, then it must work. Have you checked you access token php script on your server.