Hi ,
I have integrated form with hidden fields which consist of all required field for processing payment , and this form got action attribute,when I click on submit it is redirecting to payment url with in the app ,after The payment process completed it will be redirected to the redirected url ,at this point how can I redirect back to the application from external url
please find the sample code attached below
Submit
$("#submit_order1").on("click",function(){
var data = {
"user_id":"59",
"txn_amount":"100"
}
$.ajax({
type: "POST",
url: "http://www.kisanmanch.com/webservices...",
data: data,
dataType : "json",
success: function (msg) {
var html="";
if(msg.status == 1){
window.localStorage.setItem("redirect_payment_url",msg.data.ME_ReturnURL);
html += "";
$("#payment_page").html(html);
}
},
error:function(error){
console.log("error:"+error);
}
});
});
I also in app browser but it is showing 403 forbidden error
I have integrated form with hidden fields which consist of all required field for processing payment , and this form got action attribute,when I click on submit it is redirecting to payment url with in the app ,after The payment process completed it will be redirected to the redirected url ,at this point how can I redirect back to the application from external url
please find the sample code attached below
Submit
$("#submit_order1").on("click",function(){
var data = {
"user_id":"59",
"txn_amount":"100"
}
$.ajax({
type: "POST",
url: "http://www.kisanmanch.com/webservices...",
data: data,
dataType : "json",
success: function (msg) {
var html="";
if(msg.status == 1){
window.localStorage.setItem("redirect_payment_url",msg.data.ME_ReturnURL);
html += "";
$("#payment_page").html(html);
}
},
error:function(error){
console.log("error:"+error);
}
});
});
I also in app browser but it is showing 403 forbidden error

