I use your Bundle in my symfony2 project, and I'm happy with it, but there is a little problem with recurring payments, I had this error
"PayPal API request did not succeed for https://api-3t.sandbox.paypal.com/nvp failed: Item name, amount and quantity are required if item category is provided. (10003). "
To fix it I went to OpenBuildings/Paypal/Payment/Recurring.php to class Payment_Recurring
found function protected function _set_params() and removed the line
'L_PAYMENTREQUEST_0_ITEMCATEGORY0' => 'Digital',
Now everything works well, but I don't like the way I fixed it.
It would be great if you have time to help me find out what is wrong.
A bug report from Victor Kosh:
I use your Bundle in my symfony2 project, and I'm happy with it, but there is a little problem with recurring payments, I had this error
"PayPal API request did not succeed for https://api-3t.sandbox.paypal.com/nvp failed: Item name, amount and quantity are required if item category is provided. (10003). "
To fix it I went to
OpenBuildings/Paypal/Payment/Recurring.php
to class Payment_Recurringfound function
protected function _set_params()
and removed the line'L_PAYMENTREQUEST_0_ITEMCATEGORY0' => 'Digital',
Now everything works well, but I don't like the way I fixed it.
It would be great if you have time to help me find out what is wrong.
Here is order of my actions:
1.
2.
3.