You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have setup this library to get the payment working on my react native app.
BTClient.setup("<token>") .then(done => { console.log("done"); BTClient.showPaymentViewController({ callToActionText: "Pay" }) .then(nonce => console.log(nonce)) .catch(err => console.error(err)); }) .catch(error => { console.error(error); });
I enter test payment informations such as cb or paypal, but when I click the "Pay" button none of the showPaymentViewController promise (then or catch) is executed.
I have tried with a setTimeout as well but it doesn't work either.
Has anyone experienced this before ?
I have tried only on Android with the latest version of the library
Thanks for your help
The text was updated successfully, but these errors were encountered:
I am having the similar problem as well. If I pay by keying in test card details, it doesn't resolve with the "then" or "catch" promises.
However, if I pay with "Paypal Check out" (the button on top), it works.
Hello,
I have setup this library to get the payment working on my react native app.
BTClient.setup("<token>") .then(done => { console.log("done"); BTClient.showPaymentViewController({ callToActionText: "Pay" }) .then(nonce => console.log(nonce)) .catch(err => console.error(err)); }) .catch(error => { console.error(error); });
I enter test payment informations such as cb or paypal, but when I click the "Pay" button none of the
showPaymentViewController
promise (then or catch) is executed.I have tried with a setTimeout as well but it doesn't work either.
Has anyone experienced this before ?
I have tried only on Android with the latest version of the library
Thanks for your help
The text was updated successfully, but these errors were encountered: