gpt4 book ai didi

paypal - 在没有 API 的情况下集成 PayPal

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

我需要在我的站点中集成 paypal 但不使用 API,因为它需要放置 API key APY sescret 和用户名。在我的例子中,我的网站上有不同的供应商,他们不应该在我的网站上共享 API 凭据。所以我只需要使用 emailid 接受付款。

最佳答案

如果您不想使用 Rest API、Adaptive Payments 或 Express Checkout,它们都使用 API 凭据,您可以使用 PayPal 标准按钮。下面是一个基本的 PayPal 添加到购物车按钮示例:

<form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post" >
<input type="hidden" name="cmd" value="_cart">
<input type="hidden" name="business" value="youremail@youremail.com">
<input type="hidden" name="lc" value="US">
<input type="hidden" name="item_name" value="Sample Add to Cart Button">
<input type="hidden" name="amount" value="10.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="add" value="1">
<input type="hidden" name="bn" value="PP-ShopCartBF:btn_cart_LG.gif:NonHostedGuest">
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_cart_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>

您可以在您的 PayPal 帐户中创建一个基本的添加到购物车按钮,或者您可以使用 PayPal Button Factory
以下是 PayPal 支付标准的基础知识:
Basic PayPal Standard Integration Guide
PayPal Standard HTML Variable Guide

关于paypal - 在没有 API 的情况下集成 PayPal,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33239597/

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