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 beGET
orPOST
depending 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
action
attribute to the url. - set its
method
attribute to the method. - add the params data as
input
elements.