Reputation: 67
How do I include line items in the order summary of PayPal Express Checkout?
I'm using ASP.Net and C# and I've tried adding this to the paypalfunctions.cs file that the PayPal Integration Wizard (https://www.paypal-labs.com/integrationwizard/
) generates, but the line item doesn't show up in the "Your Order Summary" page:
encoder["L_PAYMENTREQUEST_0_NAME0"] = "My Line Item";
encoder["L_PAYMENTREQUEST_0_QTY0"] = "1";
Upvotes: 0
Views: 856
Reputation: 67
This post helped solve the problem for me: Problems with Paypal SetExpressCheckout when using NVP API in ASP.net
I was also using code generated by the PayPal Wizard that sets the version to 2.3 elsewhere in the code.
Upvotes: 1