Send user to the IPG
In this step you should send the user to the payment page using the data you got back from the requestPayment method.
As mentioned in the previous page, the returned value contains the following:
- url: The url that you should send the user to.
- method: The method with which you should send the user with. Can be- GETor- POSTdepending on the driver.
- params: The data that you should send the user with.
To send the user, create a form on the client-side and…
- set its actionattribute to the url.
- set its methodattribute to the method.
- add the params data as inputelements.