payfort / flutter-amazonpaymentservices

Flutter package for Amazon Payment Services native mobile SDKs
MIT License
2 stars 3 forks source link

Payment Screen is not appearing on IOS side #3

Open aliismaildev opened 1 year ago

aliismaildev commented 1 year ago

I am unable to integrate it on iOS side. payment screen in not appearing on iOS side with no error

bilalep commented 1 year ago

Explicitly convert all values of request parameter to string. Like this final requestParam = { 'amount': amount.toString(), 'command': command.toString(), 'currency': currency.toString(), 'customer_email': customerEmail.toString(), 'language': language.toString(), 'merchant_reference': merchantReference.toString(), 'sdk_token': .sdkToken.toString(), } For some weird reason iOS is not accepting values not enclosed in double quotes