Using different Server IPs in Javascript GET/POST requests? -
after searching while , didn't find hoping i'm asking myself if it's possible send get/post requests 2 different ips, if server/vps has 2 different ip addresses assigned?
the requests looks this:
$.ajax({ type: "get", cache: false, url: "http://url", datatype: "json", success: processdata, error: function() { somefunctio(); } });
my questions are: possible access header of request should sent , if so, need change change ip address in request?
or need migrate language, such c++ or node make happen?
Comments
Post a Comment