@jonatandor35 Hi, let me explain it clearly.
-
The user clicks a button on my website and I send the user to my payment service provider.
-
The payment is done by the user and I have set an URL to redirect the user to once the payment has been completed.
-
Now, my payment service provided actually makes a POST request to the URL I have provided. I think they send some response but that’s irrelevant. I don’t need any action based on the response.
-
The payment company said that the “redirection url only should be on server site language i.e java,php, python, java script etc,” like xyz. com/abc.js which accepts the POST request.
-
So after receiving the response, I want to redirect my user to www. thecaninecompany. in/order-success.
-
In simple term, once the payment is done, the payment provider makes a POST request to my provided URL, and I expect my provided URL to redirect to www. thecaninecompany. in/order-success since I can not directly input this address for 403 error because this page expects a GET request.
Thank you!