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)
}
})
}
If you have implemented everything correctly, then it must work. Have you checked you access token php script on your server.