react-native-braintree-dropin-ui
react-native-braintree-dropin-ui copied to clipboard
Failed to store Venmo Account in vault
Failed to store Venmo Account in vault I am facing this issue if I selects Venmo from Drop-in-ui and navigate to Venmo App for Authorization stuff, and come back to MyApp for payments, this error occurs.
FYI: I am using SandBox testing account.
To Reproduce Steps to reproduce the behavior:
Install and set it up for iOS Install Venmo App and your app on iPhone real device Call BraintreeDropIn.Show method DropInUI would be shown and click on Venmo, you would be navigated to VenmoApp After selecting the card details, you would be navigated back to your app See error on console, Failed to store Venmo Account in vault
Expected behavior It should returns results.
Verions "react-native": "0.67.3", "react-native-braintree-dropin-ui": "^1.1.3",
Code snippet
import BraintreeDropIn from 'react-native-braintree-dropin-ui'; BraintreeDropIn.show({ clientToken: payload?.clientToken, countryCode: 'US', //apple pay setting currencyCode: 'USD', //apple pay setting merchantName: 'Geronimo Live', orderTotal: grandTotal, googlePay: false, applePay: false, vaultManager: true, payPal: false, cardDisabled: true, darkTheme: true, // fontFamily: 'Averta-Regular', // boldFontFamily: 'Averta-Semibold', }) .then(result => { console.log('braintree then', result);})
Error Response
braintree eror Error: Failed to store Venmo Account in vault
Any update on this?
@nadeem36212 Were you able to resolve this? I'm facing the same issue.