以编程方式集成PayPal 'Buy now'按钮



在我的网站我集成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文档,但没有真正找到任何东西:(

  1. 当我去paypal网站时,它没有显示用信用卡支付的选项。它只显示支付选项谁有贝宝帐户和选项,以创建一个新的贝宝帐户和支付。我怎样才能让它显示用信用卡支付的选项?

  2. 付款时paypal网站显示了我的邮箱地址。但我想向我的客户展示我的企业名称,而不是我的电子邮件。我怎么做呢?

  3. 在我用我的paypal账户支付后,它不会自动重定向到我的页面,即使我在'return'字段中有一个值。我还需要做什么吗?

允许买家使用信用卡付款的选项仅适用于确认和验证的PayPal帐户。你上面提供的"商业"价值与PayPal账户没有关联——它可能不是你正在使用的账户,但这是我目前唯一可用的信息。

对于买方和卖方都有一些国家的限制。

要显示企业名称,您需要"business"值为与企业PayPal帐户链接的确认电子邮件地址。

仅仅定义"return"变量不会让买家自动返回到你的网站。您需要在接收者帐户中启用自动返回。

相关内容

  • 没有找到相关文章

最新更新