Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Um, correct me if I'm wrong here, but what you propose is a fairly regular checkout flow with one buyer and one seller (recipient).<br> You can use PayPal Express Checkout for this and simply set NOSHIPPING=2, which will turn shipping address collection off.<br> Alternatively, if you have a US PayPal account, sign up for PayPal Express Checkout for Digital Goods at <a href="https://www.paypal.com/digitalgoods" rel="nofollow">https://www.paypal.com/digitalgoods</a> and you'll be able to use a fancy JavaScript-based LightBox checkout experience (also referred to as 'inline checkout'). </p> <p>Express Checkout is fairly in that it only requires a minimum of two API calls; SetExpressCheckout and DoExpressCheckoutPayment. </p> <p>SEND: SetExpressCheckout and supply a RETURNURL, CANCELURL, AMT (amount to be charged) and your API credentials.<br> RECEIVE: You'll receive a TOKEN back from PayPal. Append this token to the following link: <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_express-checkout&amp;token=EC-XXXXXX" rel="nofollow">https://www.paypal.com/cgi-bin/webscr?cmd=_express-checkout&amp;token=EC-XXXXXX</a> (where EC-XXXXX is your token).<br> Once the buyer agrees to the payment, he'll be redirected back to your RETURNURL, after which you can either automatically, or after showing a purchase summary, call DoExpressCheckoutPayment. Supply the TOKEN again and include the PayerID (returned in GET appended to RETURNURL, or available by calling GetExpressCheckoutDetails with the TOKEN).<br> Once DoExpressCheckoutPayment acknowledges with ACK=Success, the funds will have been transferred from the buyerś PayPal account balance and/or card. </p> <p>Take a look at <a href="https://www.x.com/" rel="nofollow">https://www.x.com/</a> > Dev Tools as well for further documentation, sample code and their SDK's</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload