Paypal: trying to pass an amount with a Donation button

后端 未结 2 1151
攒了一身酷
攒了一身酷 2021-02-04 20:36

I have a Donate button set up for the user to enter the donation amount. I am trying to send an amount with the button. I can enter amount=1.00 in the Add Advanced Variables in

相关标签:
2条回答
  • 2021-02-04 20:45

    If you're creating a so called 'hosted button' (that is, a button where the button details are stored on the PayPal side), then the 'amount' POST parameter is ignored for requests to https://www.paypal.com/cgi-bin/webscr.
    This is a security feature to prevent people from being able to manipulate the amount passed to PayPal for checkout.

    You can identify whether you're using a hosted button by the following data;
    Hosted buttons will have a value for cmd of _s-xclick and include the hosted_button_id parameter.

    If this is the case, you cannot update the amount by passing in an extra amount POST parameter.

    However, because you're dealing with donations and the amount is flexible by definition, you don't in fact need a 'hosted button'. In the button creation form, turn off 'Host button with PayPal', or write your own to point to PayPal.
    If you do this, you can set the amount via the amount POST parameter.

    For example, the below works fine;

    <form method="POST" action="https://www.paypal.com/cgi-bin/webscr">
    <input type="hidden" name="cmd" value="_donations">
    <label for="amount">Amount: </label><input type="text" name="amount" value="">
    <input type="submit" name="submit" value="Pay with PayPal">
    </form>
    
    0 讨论(0)
  • 2021-02-04 20:49

    Robert's solution is on the right track, however a non-hosted PayPal form will not work without the hidden "business" field (which should have a value of the email address associated with your PayPal account.)

    Other fields should be included for thoroughness:

    <input type="hidden" name="business" value="myemail@here.com">
    <input type="hidden" name="item_name" value="Donation Description">
    <input type="hidden" name="currency_code" value="USD">
    <input type="hidden" name="tax" value="0">
    
    0 讨论(0)
提交回复
热议问题