Hello, I want to configure PayPal standard plugin
Version 1.60, NopCommerseVersion 4.30
I've created business PayPal account
I configured under
Account settings > Website payments > Website preferences (https://www.paypal.com/businessmanage/preferences/website)
Auto return for website payments: Set to "On" and entered my site URL:
http://.../Plugins/PaymentPayPalStandard/PDTHandler
also I set
Payment data transfer: to "On"
After redirecting to PayPal, I've logged in and made a payment. And by pressing "Return to merchant", I was expected PayPal would redirect to http://.../Plugins/PaymentPayPalStandard/PDTHandler.
But instead of GET, PayPal uses post
Request URL: http://.../Plugins/PaymentPayPalStandard/PDTHandler
Request Method: POST
and posts Form parameters:
payer_email: [email protected]
payer_id: JBH2JMEFAZEN2
payer_status: VERIFIED
first_name: John
last_name: Doe
...
I looked at PDTHandler code in nopCommerce, it expects GET and reads parameters from QueryString, but PayPal uses POST.
Is it possible to configure PayPal for it to use GET, or am I missing some configuration in NopCommerce part?