在我的网站中,我正在整合paypal立即购买按钮programaticaly。
这就是我所拥有的:
<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" />
<!--Dont 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://mysite.com/Order/Complete/" />
<input type="hidden" name="cancel_return" value="http://mysite.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文档,但没有找到任何东西:(
当我去paypal网站时,它没有显示用信用卡支付的选项。它只显示支付选项谁有paypal帐户和选项创建一个新的paypal帐户和支付。如何让它显示用信用卡支付的选项?
在paypal网站付款时,会显示我的电子邮件地址。但我想向我的客户展示我的公司名称,而不是我的电子邮件。我该怎么做?
我用paypal帐户付款后,即使我在'return'字段中有值,它也不会自动重定向到我的页面。我还需要做其他事吗?
答案 0 :(得分:0)
允许买家使用信用卡付款的选项仅适用于已确认和已验证的PayPal帐户。您在上面提供的“商家”价值与PayPal帐户没有关联 - 它可能不是您正在使用的帐户,但它是我目前唯一可用的信息。
买家和卖家也有一些国家限制。
要显示商家名称,您需要将“商家”值作为链接到商家PayPal帐户的已确认电子邮件地址。
仅定义“返回”变量不会让买家自动返回到您的网站。您需要在接收方帐户中启用自动返回。