flutter-braintree icon indicating copy to clipboard operation
flutter-braintree copied to clipboard

Not getting venmo option in BraintreeDropInRequest

Open krishna1931 opened this issue 4 years ago • 6 comments

payment_options

Only getting paypal and card option here in BraintreeDropInRequest. how can I get venmo option also?

var request = BraintreeDropInRequest(
                        vaultManagerEnabled: true,
                        applePayRequest: BraintreeApplePayRequest(
                            amount: amountInt.toDouble(),
                            displayName: "TEST",
                            countryCode: "PL",
                            currencyCode: "PLD",
                            appleMerchantID: "merchant.id.here"),
                        venmoEnabled: true,
                        tokenizationKey: tokenizationKey,
                        collectDeviceData: true,
                        googlePaymentRequest: BraintreeGooglePaymentRequest(
                          totalPrice: amountInt.toString(),
                          currencyCode: 'PLD',
                          billingAddressRequired: false,
                        ),
                        paypalRequest: BraintreePayPalRequest(
                          amount: amountInt.toString(),
                          displayName: 'TEST',
                        ),
                        cardEnabled: true,
                      );

Please help me with this. Thank you.

krishna1931 avatar May 31 '21 14:05 krishna1931

same error. Is there any update on this?

dinit-sadaindia avatar Aug 25 '21 05:08 dinit-sadaindia

Same bug, can't use Venmo.

diegofca avatar Aug 30 '21 04:08 diegofca

+1

anooj-shah avatar Nov 05 '21 04:11 anooj-shah

Same error. Any update?

javivdev avatar Apr 05 '22 16:04 javivdev

I was able to solve the same issues by following the instructions here:

  • https://developer.paypal.com/braintree/articles/guides/payment-methods/venmo#testing
  • https://developer.paypal.com/braintree/docs/guides/venmo/client-side

YonathanZetune avatar Apr 10 '22 18:04 YonathanZetune

I was able to solve the same issues by following the instructions here:

  • https://developer.paypal.com/braintree/articles/guides/payment-methods/venmo#testing
  • https://developer.paypal.com/braintree/docs/guides/venmo/client-side

Can you share the code please?

BunnyBuddy avatar Mar 13 '24 10:03 BunnyBuddy