payjp / payjp-react-native-plugin

A React Native plugin for PAY.JP Mobile SDK (iOS/Android)
https://pay.jp/docs/mobileapp-react-native
MIT License
5 stars 0 forks source link

Why I'm stuck on add credit card screen. #544

Open ramangupta1602 opened 2 months ago

ramangupta1602 commented 2 months ago

Hi @yatatsu,

Why I'm stuck on add credit card screen, why I don't get token after this process, using the latest version of the package and the version of react-native@0.72.3 Screenshot_1725509624

and the code is:----

  1. PayjpCore.init({ publicKey: PAY_JP_PUBLIC_KEY_TEST, }).then(() => { console.log('Prod',PAY_JP_PUBLIC_KEY_TEST); }).catch((error) => { console.error('Error initializing PayjpCore:', error); });
  2. onPressAddCard = () => { PayjpCardForm.startCardForm() }

    1. const unsubscribePayjpForm = PayjpCardForm.onCardFormUpdate({ onCardFormProducedToken: async token => { console.log('onCardFormProducedToken', token);

      return PayjpCardForm.completeCardForm()

      } catch (exception) { return PayjpCardForm.showTokenProcessingError('An error has occured') } } })

    PayjpCore.init() this is working fine but I'm stuck here onCardFormUpdate

yatatsu commented 2 months ago

Hi @ramangupta1602

I’ve looked at your code and screenshots. Please check the following points:

thanks