Forum Moderators: buckworks
Having read through the material, I remain rather confused.
I would be grateful to hear from anyone who has either successfully gone through this process, or is currently trying to integrate their own shopping cart with Paypal.
- Is there are sandbox for testing?
- The literature specifically states that buyers do not need to have a Paypal account to pay via credit card, but the instructions for integration appear to assume that all buyers do have Paypal accounts.
I would be eternally grateful for any advice.
Setting up a basic PayPal payment button is pretty simple: just put the email address for your company's PayPal account in the "business" variable in this sample and you can test it out:
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value=YOUR_EMAIL_HERE>
<input type="hidden" name="item_name" value="test">
<input type="hidden" name="amount" value="1.00">
<input type="hidden" name="no_shipping" value="2">
<input type="hidden" name="no_note" value="1">
<input type="hidden" name="currency_code" value="USD">
<input type="image" src="https://www.paypal.com/en_US/i/btn/x-click-but23.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
</form>
You can try this in a couple of different browsers and you should be able to see what pages a non-PayPal customer would use for making credit card payments without an account.
I may be forced to test using the live account, which doesn't make me feel happy.
Auto-Return does not work with Account Optional - the customer will not be automatically returned. However, there should be a "Return to Merchant" option on the pages after the payment is complete.