我想通过代理发送请求。但是我的请求是从我的IP发送到URL而不是代理IP。我的axios代码是:我的响应必须是206.189.45.191,但我的响应是我自己的IP。
axios.get("https://api.ipify.org", {
proxy: {
host: '206.189.45.191',
port: 80
}
})
.then(function (response) {
// handle success
console.log(response.data);
})
.catch(function (error) {
// handle error
console.log(error);
})
.finally(function () {
// always executed
});