This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| #Example integration with iFrame based solution | |
| #Step 1 | |
| #Initiate the order with initorder api call | |
| $ch = curl_init('https://api.juspay.in/init_order'); | |
| curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var juspayResponse = JSON.parse(res); // assuming that `res` holds the data return by JusPay API | |
| var url = juspayResponse.payment.authentication.url | |
| var method = juspayResponse.payment.authentication.method | |
| var frm = document.createElement("form") | |
| frm.style.display = "none"; // ensure that the form is hidden from the user | |
| frm.setAttribute("method", method); | |
| frm.setAttribute("action", url); | |
| if(method === "POST") { |