Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Hi all,
I'm trying to set up Ucommerce to use pay pal.
There's only one item anyone can purchase.
I've kind of skipped some parts and wanted to know if this would cause the error i'm getting.
So after the basket page I have a method to go straight to paypal:
public ActionResult ProcessPayment() { var country = TransactionLibrary.GetCountries().FirstOrDefault(); var paymentMethod = TransactionLibrary.GetPaymentMethods(country).FirstOrDefault(); var payment = TransactionLibrary.CreatePayment( paymentMethodId: paymentMethod.PaymentMethodId, requestPayment: true, amount: -1, overwriteExisting: true); TransactionLibrary.ExecuteBasketPipeline(); var page = TransactionLibrary.GetPaymentPageUrl(payment); return Redirect(page); }
Now after this runs I get the following error:
I haven't filled out billing address etc...
Could this be the issue?
Thanks!!!
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Ucommerce PayPal Error
Hi all,
I'm trying to set up Ucommerce to use pay pal.
There's only one item anyone can purchase.
I've kind of skipped some parts and wanted to know if this would cause the error i'm getting.
So after the basket page I have a method to go straight to paypal:
Now after this runs I get the following error:
I haven't filled out billing address etc...
Could this be the issue?
Thanks!!!
is working on a reply...