I have successfully enabled the apple pay integration in sandbox account by following the In-App guide.
But I am getting error during transaction:
There was an error processing the payment data. Unable to decrypt data.
I am using below ios code to get payment token:
let transactionIdentifier = payment.token.transactionIdentifier
let base64str = self.base64forData(payment.token.paymentData)
and using payment.token.paymentData as OpaqueDataValue parameter in backend API.
Please help.