Is billing address required for Paypal direct payment (credit card)

蹲街弑〆低调 提交于 2019-12-11 06:03:00

问题


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?


回答1:


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!




回答2:


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




回答3:


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:

self.co_params['street'] = 'None'
self.co_params['city'] = 'None'
self.co_params['state'] = 'None'
self.co_params['zip'] = '0000'
self.co_params['countrycode'] = 'GB'
....
nvp_obj = wpp.doDirectPayment(self.co_params)

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.



来源:https://stackoverflow.com/questions/11191823/is-billing-address-required-for-paypal-direct-payment-credit-card

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!