spree-contrib / spree_braintree_vzero

Official Braintree + PayPal integration gem for Spree Commerce
https://www.braintreepayments.com/
BSD 3-Clause "New" or "Revised" License
46 stars 59 forks source link

Paypal transactions are marked as risky #176

Open Dethon opened 7 years ago

Dethon commented 7 years ago

When I use PayPal as my payment method the order is marked as risky in the admin panel. Is this expected? and if so, why?

Also, I don't know if it's related, but I'm using a sandbox Braintree account.

dhemmat commented 6 years ago

@DethonUSAL, a little late but I came across a similar issue today while using another gem. It seems that Spree uses is_risky? method on orders, which in turn checks if payments are risky (scope here), which in turn is verifying whether CVV was correct and address was verified. Since paypal has neither a CVV nor an address verification, they are marked as risky.

Dethon commented 6 years ago

Thank you, I had this in the backburner for a while. As of now I'm marking all PayPal payments as not risky in my test deployment. I wonder if there is a better way to address this.