PayPal购买链接已弃用?

时间:2015-10-18 11:35:04

标签: url paypal

多年来,我使用Paypal链接让用户从我们的网站购买:

https://www.paypal.com/xclick/business=[OURMAILADDRESS]&item_name=[ProductName]&amount=26%2e80&shipping=0%2e00&no_shipping=0&no_note=1&tax=0&currency_code=EUR&lc=it&bn=PP%2dBuyNowBF&charset=UTF%2d8'

该链接在大约2周前停止工作。 我在网上找不到任何关于它被弃用的信息。 任何人都可以对这个话题有所了解吗?

2 个答案:

答案 0 :(得分:3)

看起来paypal已经取消了之前推荐使用的paypal.com/xclick链接支持(在2006年网站付款标准结帐集成指南pdf中)。

将您的链接更改为:

var yesterday = new Date(new Date().getTime() - (24 * 60 * 60 * 1000));
db.collection.find({ "created_on": { "$gte": yesterday } });

对于订阅,请使用:

https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=...

答案 1 :(得分:0)

您提供的链接未显示404未找到错误。它转到了paypal的启动画面页面。用户可以从那里登录。网址被重定向到https://www.paypal.com/home。看起来你已经有了一个不再工作的功能。我以前没见过,但确实有解决方案。

如果您想为用户提供一种在您的网站上使用PayPal购买的方法,那么html中的常见(而非硬)方法就是使用PayPal代码,例如您在paypal上创建的代码网站(在"设置"您可以创建一个按钮并将代码粘贴到您的网站中)或手动创建一个带有输入字段的html表单。

您正在将输入字段中的数据发送到网址中,这些数据将显示在表单$ _GET操作中,并在网址中显示为paypal。 Paypal并没有谈论以这种方式处理数据。也许任何允许非正式工作的东西,不再是。

有很多关于如何在SO上创建paypal按钮html代码的示例。如果你愿意,我可以张贴一些。该网站告诉输入字段您可以使用以下网址创建网址数据:https://developer.paypal.com/docs/classic/paypal-payments-standard/integration-guide/Appx_websitestandard_htmlvariables/

以下是一个例子:

<form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post" >

  <input type="hidden" name="cmd" value="_cart"> <!-- I'm using cart, you want to stick the buy now option value in here. -->

 <input type="hidden" name="business" value="yoru business signon email">

 <input type="hidden" name="lc" value="EUR">

 <input type="hidden" name="item_name" value="Whats bought">


   <input type="hidden" name="amount" value="15.00">

   <input type="hidden" name="currency_code" value="USD">

   <input type="hidden" name="button_subtype" value="products">

   <input type="hidden" name="no_note" value="0">

   <input type="hidden" name="cn" value="Add special instructions to the seller:">

   <input type="hidden" name="no_shipping" value="2">

   <input type="hidden" name="rm" value="1">

  <input type="hidden" name="shopping_url" value="http://www.yours.com/OnlinePayButtons.php">


   <input type="hidden" name="add" value="1">

   <input type="hidden" name="bn" value="PP-ShopCartBF:btn_cart_SM.gif:NonHosted">

  <input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_cart_SM.gif" border="0" name="submit">
          <img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height=".8"> 

  </form>

你必须选择html变量的链接,你需要在表单中输入什么。这给出了它的外观结构和概念。