please help me to receive josn data from this site, need to make imei check don't know how to get their response. Tried php porxy page, but unsuccessfull
they use this script, but origin don't let me make crossdomain AJAX Thanks for attention
$.ajax({ type: "POST", url: "http://iphoneimei.info/json/unlock/request" ,
data: {imei: '012651006507772'} ,
error: function() {
$("#unlock-msg").html('<span class="red"> Error </span>');
$("#unlock-loading").hide();
$("#unlock-main-div").fadeOut("fast");
},
success: function(data) {
alert(data.msg);
}
,dataType: "json"});
I would try using CURL:
However, the server keep given empty response. I don't know if the server is available for public use like that. Is a authentication token required ?