I have a site with a paypal module. The problem is that the site use as currency "PEN" (Peruvian currency) but it's not supported by Paypal. Is there any way to I gate the supported currencies of paypal or passing the amount in PEN and paypal convert it automatically to USD perhaps?
相关问题
- Get payment by transaction ID using PayPal API
- How to refresh the NSLocale in iPhone?
- Paypal Rest API SDK v2
- Paypal Express Checkout - You are calling paypal.c
- Java Money - currency conversion rate on specific
相关文章
- Is working with money (decimal numbers) in PHP con
- php paypal. A way to validate a payment before acc
- Paypal IPN Script, issue with feof and fgets
- Google Forms PayPal Express Integration
- Recurring payment for Paypal Android SDK
- Paypal web payments standard - Refunds. Can they b
- Using Objects in PAYPAL PHP REST API SDK
- django-paypal IPN signals not being received
I'm afraid you are underestimating the meaning of "unsupported". Paypal demands that you only use a supported currency throughout the whole payment transaction, and they aren't going to convert unsupported currencies for you.
You should convert currencies on your side: fetch current exchange rates from some web service, list official prices in a supported currency and approximate prices in PEN, and ask the user for Paypal payments in the supported currency.