Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Payment methods not showing #15

Open
zvone00 opened this issue May 19, 2020 · 4 comments
Open

Payment methods not showing #15

zvone00 opened this issue May 19, 2020 · 4 comments
Labels
question Further information is requested

Comments

@zvone00
Copy link

zvone00 commented May 19, 2020

Hello,

I copied exact code from documentation to my component.

import AdyenPayment from 'react-native-adyen-payment';

const DEMO_SERVER_API_KEY ="Your Demo Server Key";
const CARD_PUBLIC_KEY = "Your Public Card Key";
const MERCHANT_ACCOUNT = 'Your Merchant Account';

class App extends Component<Props> {
  constructor(props) {
    super(props);
    this.state = {
      isLoading : false,
      adyen_payment_status : 'initiated'
    };
        /*
    The base URL should be your API server running with the following POST endpoints
     - /paymentMethods
     - /payments
     - /payments/details
     Ex :
     Base URL : https://XXXXXX.com/payments/adyen
     https://XXXXXX.com/payments/adyen/paymentMethods
     https://XXXXXX.com/payments/adyen/payments
     https://XXXXXX.com/payments/adyen/payments/details
     Any Extra Header Parameters to be passed can be given in the "additional_http_headers"
     As an example we are using Adyens Demo Server Base URL
    */
     var appServiceConfigData = {
      "environment" : "test",
      "base_url": "https://checkoutshopper-test.adyen.com/checkoutshopper/demoserver/",
      "additional_http_headers" : {
        "x-demo-server-api-key": DEMO_SERVER_API_KEY
      }
    };
    AdyenPayment.initialize(appServiceConfigData);
    AdyenPayment.onSuccess((payload) => {
      this.setState({adyen_payment_status: 'success'});
      console.log(payload);
    });

    AdyenPayment.onError((code, error) => {
      console.log("Adyen Error : ",error);
      this.setState({adyen_payment_status: 'failure'});
    });
  }

   onClickPayment = () =>
   {
        var paymentDetails = {
          amount: {
              value: 200,//In Multiples of hundred
              currency: 'EUR'
          },
          reference: "XXXXXXXX",
          shopperReference : "XXXXXX",
          shopperEmail : "XXXXXXX@XXXX.com",
          channel: (Platform.OS === 'ios') ? "iOS" : "Android",
          countryCode: "FR",
          shopperLocale: "fr_FR",
          returnUrl: (Platform.OS === 'ios') ? '<YourAppDisplayName>-app://' : "adyencheckout://<packageName>",
          merchantAccount: MERCHANT_ACCOUNT,
          additionalData : {
                  allow3DS2 : true,
                  executeThreeD : true
          }
        };
        // Data for various Components
        var componentData = {
          "scheme" : {
            "card_public_key" : CARD_PUBLIC_KEY
          },
          "applepay" : {
            "apple_pay_merchant_id" : "Your Apple Merchant ID"
          },
          "bcmc":{
            "card_public_key" : CARD_PUBLIC_KEY
          }
        }
      try{
          // The Following Payment Methods are supported
          //DROPIN,IDEAL,MOLPAY_MALAYSIA,MOLPAY_THAILAND,MOLPAY_VIETNAM,DOTPAY,EPS,ENTERCASH,OPEN_BANKING,
          //SCHEME,GOOGLE_PAY,SEPA,BCMC,WECHAT_PAY_SDK,APPLE_PAY,
          AdyenPayment.startPayment(AdyenPayment.DROPIN,componentData,paymentDetails)
      }catch(err){
        console.log(err.message);
      }
   }

   render() {
    return (
      <View style={styles.container}>
          <Button label={"Pay"} onPress={() => {this.onClickPayment();}}/>
      </View>
   )
  }

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

@mkharibalaji
Copy link
Owner

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.

@mkharibalaji mkharibalaji added the question Further information is requested label Jun 4, 2020
@zvone00
Copy link
Author

zvone00 commented Jun 8, 2020

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

@Gp2mv3
Copy link
Collaborator

Gp2mv3 commented Nov 13, 2020

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 ?

@mickadoua
Copy link
Collaborator

mickadoua commented Feb 17, 2021

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

mickadoua added a commit to mickadoua/react-native-adyen-payment that referenced this issue May 25, 2021
AS a customer with multiple stored Credit Cards, i can view and select an old one 
This PR fix the following issue :  mkharibalaji#15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
question Further information is requested
Projects
None yet
Development

No branches or pull requests

4 participants