gpt4 book ai didi

Paypal 结帐按钮和自定义变量

转载 作者:太空宇宙 更新时间:2023-11-03 15:40:24 25 4
gpt4 key购买 nike

我创建了一个相当简单的照片库,我希望应用 PayPal Checkout 按钮。基础很简单,但我想做的是至少将命名字段预填充为按钮的一部分,或者将每个单独页面中包含的变量传递到购物车。

每个页面都包含图片 ID、日期和标题。我希望能够传递这些数据,以便当有人点击“添加到购物车”时,数据已经存在。现在我能看到按钮正常工作的唯一方法是创建自定义字段并让客户自己复制和粘贴数据,这有点痛苦。

如果我能弄清楚这一点,PayPal 结帐可能是值得的。这里有人做过吗?

最佳答案

您需要这样的东西吗?不久前我从 PayPal 文档中得到了它。我现在在生产应用程序中使用它。请在使用前进行测试:)

<form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post" style="margin:4px 0px 0px 4px;">
<input type="image" src="<ADD_TO_CART_BUTTON>.jpg" border="0" name="submit" alt="Add this item to your shopping cart">
<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
<input type="hidden" name="add" value="1">

<input type="hidden" name="cmd" value="_cart">
<input type="hidden" name="business" value="<YOUR_PAYPAL_EMAIL>">
<input type="hidden" name="item_name" value="<THE_ITEM_NAME>">
<input type="hidden" name="item_number" value="<THE_ITEM_NUMBER_SKU_OR_WHATEVER>">
<input type="hidden" name="amount" value="<HOW_MUCH_IT_COSTS>">
<input type="hidden" name="no_shipping" value="1">
<input type="hidden" name="cn" value="<CUSTOM_TEXT_FOR_THE_BUYER_TO_LEAVE_YOU_SPECIAL_INSTRUCTIONS>">
<input type="hidden" name="currency_code" value="USD">
<input type="hidden" name="lc" value="US">

<input type="hidden" name="bn" value="PP-ShopCartBF">
<input type="hidden" name="address_override" value="1">
<input type="hidden" name="business_cs_email" value="<YOUR_PAYPAL_EMAIL>">
<input type="hidden" name="return" value="<WHERE_TO_TAKE_THE_USER_AFTER_PURCHASE_LIKE_thankyou.html>">
<input type="hidden" name="notify_url" value="<IF_YOU_PROCESS_ORDERS_THROUGH_YOUR_SITE_THE_CALLBACK_URL_GOES_HERE>">

</form>

您要销售的每件商品都需要其中一个。

注册 http://sandbox.paypal.com并开始在他们的沙箱中进行尝试。

另请查看 http://www.x.comhttp://www.paypal-labs.com .他们一直在用结账做一些很酷的事情。

关于 Paypal 结帐按钮和自定义变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1710934/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com