when user do a direct payment(buy as guest - pay by credit card), by default,user need to fill up credit card billing address and phone number before going to credit card number, csc etc. Actually i don't really want the billing address, can i direct user to credit card number,csc directly?
相关问题
- Get payment by transaction ID using PayPal API
- Paypal Rest API SDK v2
- Paypal Express Checkout - You are calling paypal.c
- PayPal REST API cross reference transaction with p
- PayPal Payments Advanced — Validate Parameters Sen
相关文章
- What is the relationship between the EMV ODA, CA a
- 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
Some credit cards require billing address. For example, Visa requires billing address.
Yes, you are required to provide billing address if you want to accept all types of credit card.
Just FYI, you also need to display PayPal Express Button if you use PayPal Direct. Please make sure PayPal approve your merchant account first. They sometimes do not approve your merchant account depending on your business type.
Good luck!
Based on my own experience with Paypal's various APIs, you will need to include either billing or shipping information. But for the record, you should refer to their documentation (which is pretty good):
https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&content_ID=developer/howto_api_reference
Many CC forms I have filled in do not ask for a address, but they work. What were they sending for the address? I found that if you did not have an address, you can't send empty strings, that just leads to error, but if you put 'None' in the address fields and '0000' for the zip code, it is accepted. These are the paramaters I send to the call with every CC purchase, and they work every time:
This is using django-paypal. There are other parameters as well, but this address combination worked for me. I did not find this in Paypal's documentation, but trial and error.