在我的网站中,我正在以编程方式集成 paypal 立即购买按钮。
这就是我所拥有的:
<form action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post" style="margin-top: 30px;">
<!-- Specify a Buy Now button. -->
<input type="hidden" name="cmd" value="_xclick" />
<!-- Identify your business so that you can collect the payments. -->
<input type="hidden" name="business" value="me@email.com" />
<!-- Specify details about the item that buyers will purchase. -->
<input type="hidden" name="item_name" value="Your items." />
<input type="hidden" name="item_number" value='@Model.OrderId' />
<input type="hidden" name="amount" value='@Model.Total' />
<input type="hidden" name="currency_code" value="DKK" />
<!--Don't want any shipping address. -->
<input type="hidden" name="no_shipping" value="1"/>
<!-- Specify a URL for the payment confirmation page and a page that is displayed
if the user cancels a transaction. Also specify a URL that PayPal can post IPN
messages to (see explanation below). -->
<input type="hidden" name="return" value="http://example.com/Order/Complete/" />
<input type="hidden" name="cancel_return" value="http://example.com/Order/Cancel/" />
<input type="hidden" name="notify_url" value="" />
<!-- Do not prompt customers to include a note with their payment. -->
<input type="hidden" name="no_note" value="1" />
<!-- Display the payment button. -->
<input type="image" name="submit"
src="https://www.sandbox.paypal.com/en_US/i/btn/btn_buynowCC_LG.gif"
alt="PayPal — The safer, easier way to pay online." />
<img src="https://www.sandbox.paypal.com/en_US/i/scr/pixel.gif"
width="1" height="1" alt="" />
</form>
现在我有几个问题,我通过谷歌搜索还没有找到任何答案,我也看到了贝宝文档,但没有真正找到任何东西:(
当我去贝宝网站时,它没有显示用信用卡支付的选项。它仅显示具有贝宝帐户的付款选项以及创建新贝宝帐户并付款的选项。如何让它显示通过信用卡支付的选项?
付款时在贝宝网站上显示我的电子邮件地址。但我想向我的客户展示我的公司名称而不是我的电子邮件。我怎么做?
在我使用我的 paypal 帐户付款后,即使我在“return”字段中有一个值,它也不会自动重定向到我的页面。我还需要做其他事情吗?