Open zvone00 opened 4 years ago
Hi @zvone00 , This method initializes AdyenPayment.initialize(appServiceConfigData) the AdyenPayment.If the Payment Methods are not showing,please check the iOS / Android logs on whether the API calls to Adyen are working and or any Payment Methods are configured within the Adyen Admin Console.
Hello,
I tried this on Android, but Android Studio logcat does not show any API calls towards Adyen, which is quite strange. Seems like the initialize
method is producing no effect for me.
I am using React Native 0.61.5
Hi, I have the same question. I see the return from the API call:
{"groups":[{"name":"Credit Card","types":["mc","visa"]}],"paymentMethods":[{"brands":["mc","visa"],"details":[{"key":"encryptedCardNumber","type":"cardToken"},{"key":"encryptedSecurityCode","type":"cardToken"},{"key":"encryptedExpiryMonth","type":"cardToken"},{"key":"encryptedExpiryYear","type":"cardToken"},{"key":"holderName","optional":true,"type":"text"}],"name":"Carte bancaire","type":"scheme"},{"details":[{"key":"paywithgoogle.token","type":"payWithGoogleToken"}],"name":"Google Pay","supportsRecurring":true,"type":"paywithgoogle"}]}
But the list of payment methods isn't displayed, only the "Card component". I start the payment with the Dropin methos as shown here:
const response = await AdyenPayment.startPaymentPromise(AdyenPayment.DROPIN, componentData, paymentDetails);
console.log(response);
How can I display the list of payment methods ?
hello, I have similar issue. With the last version of react-native-adyen-payment (1.6.1) i have only one credit card displayed for a specific client,
To be more clear, with :
await AdyenPayment.startPaymentPromise(
AdyenPayment.DROPIN,
...
every work fine, i have all my credit card, and other payment mothod displayed
if i use
await AdyenPayment.startPaymentPromise(
AdyenPayment.SCHEME,
...
i have just one credit card displayed
this is fix on the followed PR
Thanks
Hello,
I copied exact code from documentation to my component.
But the payment methods are not showing, only the pay button is visible. What should I do in order for payment methods to show-up (specifically credit card fields)? How are they mounted? Is there any way to debug
AdyenPayment.initialize(appServiceConfigData);
?Thanks