html – 强制PayPal始终要求信用卡信息而不是登录表单?

前端之家收集整理的这篇文章主要介绍了html – 强制PayPal始终要求信用卡信息而不是登录表单?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我们正在使用Paypal付款标准在我们的网站.当用户在我们的网站上填写他们的请求并按paypal按钮“立即购买”时,我们将所有变量提交给paypal,以便他们可以处理付款.

对于那些从来没有过Paypal的用户,他们通过我们的网站付款,它的工作效果非常好,因为它会自动提示信用卡信息.

但是,对于那些在我们注意到cookies存储在计算机中之前已经进入paypal的用户,并且在请求信用卡信息之前提示用户自动登录.

我们希望paypal一直要求信用卡信息,并留下登录支付使用paypal作为选项.

是否有任何变量我们可以发送到paypal,以迫使他们直接要求信用卡信息?

到目前为止,我们发现这些变量可以自动完成信用卡领域,他们的工作很棒:

<input type="hidden" name="country" value="" />
<input type="hidden" name="first_name" value="" />  
<input type="hidden" name="last_name"value="" />   
<input type="hidden" name="address1" value="" />
<input type="hidden" name="city" value="" />
<input type="hidden" name="state" value="" /> 
<input type="hidden" name="zip" value="" />
<input type="hidden" name="email" value="" />
<input type="hidden" name="night_phone_a" value="" />
<input type="hidden" name="night_phone_b" value="" />
<input type="hidden" name="night_phone_c" value="" />

有关PayPal Form变量的更多信息,请参考:

https://cms.paypal.com/cgi-bin/?cmd=_render-content&content_ID=developer/e_howto_html_formbasics

解决方法

我找到一个html格式的解决方案,它没有由paypal(!)记录:
<input type="hidden" name="landing_page" value="Login" />

or

<input type="hidden" name="landing_page" value="Billing" />

这是祈祷paypal登录查看所需的表单.玩的开心.

原文链接:https://www.f2er.com/html/224801.html

猜你在找的HTML相关文章