我如何使用此URL进行付款https://api-3t.sandbox.paypal.com/nvp
,并且是否有任何请求来自此URL https://svcs.sandbox.paypal.com/AdaptivePayments
和此URL https://api-3t.sandbox.paypal.com/nvp
。提前致谢。我如何在PayPal中进行付款?
-1
A
回答
1
通过PayPal进行支付的唯一方法是使用沙箱,您可以使用购物车或出售由paypal.com提供的单个项目选项并将链接复制到您的网站,或者您可以将代码添加到您的网站以发送从您的网站信息到贝宝。
1
是的,你可以从HTML或编程页面 看看这些代码
常量字符串SERVER_URL = “https://www.paypal.com/cgi-bin/webscr?” 送; const string return_URL =“您的网站网址”; const string cancelreturn_URL =“您的网站网址”; string cmd =“_xclick”; string business =“您的贝宝ID”; string item_name =“您的物品名称”; double amount = 1;
double handling = 00.00;
int no_shipping = 0;
int no_note = 0;
string currency_code = "MYR"; //Replace with country Currency code
string lc = "MY";
string bn = "PP-BuyNowBF";
string redirect = "";
redirect += Server_URL;
redirect += "cmd=" + cmd;
redirect += "&business=" + business;
redirect += "&item_name= " + item_name;
redirect += "&amount=" + amount;
redirect += "&shipping=" + shipping;
redirect += "&handling=" + handling;
redirect += "&no_shipping=" + no_shipping;
redirect += "&no_note=" + no_note;
redirect += "¤cy_code=" + currency_code;
redirect += "&lc=" + lc;
redirect += "&bn=" + bn;
redirect += "&return=" + return_URL;
redirect += "&cancel_return" + cancelreturn_URL;
Profile.SCart = null;
Response.Redirect(redirect);
您可以添加一个按钮到您的网站,并添加这些代码buttion行动 有贝宝的一个测试网站,这样你就可以用这个和测试代码 使用这个链接https://developer.paypal.com/和创造买方和卖方ID
一个国家MY =马来西亚 BN是标准的这样的例子 经营业务贝宝ID(卖方)贝宝写的+0
我在沙盒中创建帐户。什么是lc,bn,bussiness,cmd?提前致谢 – selva 2011-05-05 06:47:32
0
LC缩写, CMD写这样的例子
相关问题
- 1. PayPal并行付款
- 2. 使用PayPal付款付款
- 3. 使用PayPal进行分期付款
- 4. 使用PayPal ipn和pdt进行付款
- 5. 使用paypal进行自动付款
- 6. 如何整合paypal付款?
- 7. 如何使用节点中的paypal-rest进行直接付款?
- 8. Facebook Paypal付款
- 9. Paypal付款
- 10. PayPal支付:让我使用PayPal支付付款成功
- 11. PayPal预付款,在执行前验证付款
- 12. 如何使用Paypal进行自动付款(非循环)
- 13. 如何保护敏感页面进行PayPal付款处理?
- 14. 如何使用PayPal进行分期付款
- 15. 如何使用django-paypal进行贝宝自适应付款?
- 16. 如何使用paypal php rest api进行月度订阅付款
- 17. 跳过付款PayPal定期付款API
- 18. 使用Paypal Merchant SDK或Paypal REST API进行定期付款
- 19. 我需要2个PayPal帐户才能进行单笔付款
- 20. 在PayPal中使用Classic Api进行直接信用卡付款
- 21. 在php中使用paypal pro进行dodirect付款
- 22. 在cakephp中使用PayPal进行定期付款
- 23. Paypal付款处理
- 24. PayPal定期付款
- 25. Paypal API待付款
- 26. 使用Paypal付款
- 27. Paypal付款选项
- 28. Paypal付款满足
- 29. 使用Paypal付款
- 30. PayPal直接付款
谢谢您的回答,您告诉我们发送信息paypal网站的权利?可以弄清楚一点。在此先感谢 – selva 2011-05-04 14:09:17