NodeJS:利用 Axios 实现 HTTP、HTTPS 和 SOCKS5 署理请求

打印 上一主题 下一主题

主题 737|帖子 737|积分 2221

在一样平常开辟中,网络请求是不可制止的。通过使用署理服务器,可以更好地控制请求的来源、隐蔽 IP 地址,大概绕过网络限定。在本篇文章中,我将分享怎样使用 axios 库联合 HTTP、HTTPS 和 SOCKS5 署理来发送网络请求,并详细介绍实现过程。
预备工作

首先,我们需要确保项目中安装了必要的依赖,包括 axios、http-proxy-agent、https-proxy-agent 和 socks-proxy-agent。可以使用以下命令进行安装:
  1. npm install axios http-proxy-agent https-proxy-agent socks-proxy-agent
复制代码
安装完成后,就可以开始构建代码了。
代码实现

1. 导入必要的模块

我们首先导入 axios 库及相应的署理模块:
  1. import axios from "axios";
  2. import { HttpProxyAgent } from "http-proxy-agent";
  3. import { HttpsProxyAgent } from "https-proxy-agent";
  4. import { SocksProxyAgent } from "socks-proxy-agent";
复制代码
这里我们使用 axios 作为 HTTP 客户端,用它来发送网络请求;而 http-proxy-agent、https-proxy-agent 和 socks-proxy-agent 用于处理差别范例的署理协议。
2. 配置 HTTP 署理

我们通过 HttpProxyAgent 配置 HTTP 署理:
  1. const http = () => {
  2.   const httpAgent = new HttpProxyAgent("http://127.0.0.1:7899");
  3.   httpAxios.defaults.httpAgent = httpAgent;
  4.   httpAxios.defaults.proxy = true;
  5.   httpAxios.get("http://ipinfo.io", {}).then((res) => {
  6.     console.log(res.data);
  7.   });
  8. };
复制代码


  • HttpProxyAgent("<http://127.0.0.1:7899>"):定义 HTTP 署理的地址。这里我们指定署理服务器位于本地的 7899 端口。
  • httpAxios.defaults.httpAgent:设置 axios 请求的 httpAgent,用于处理署理请求。
  • httpAxios.defaults.proxy = true:启用署理模式。
  • httpAxios.get("<http://ipinfo.io>"):发送 HTTP 请求,并输出响应内容。
3. 配置 HTTPS 署理

对于 HTTPS 请求,我们可以使用 HttpsProxyAgent:
  1. const https = () => {
  2.   const httpsAgent = new HttpsProxyAgent("http://127.0.0.1:7899");
  3.   httpsAxios.defaults.httpsAgent = httpsAgent;
  4.   httpsAxios.defaults.proxy = false;
  5.   httpsAxios.get("https://ipinfo.io", {}).then((res) => {
  6.     console.log(res.data);
  7.   });
  8. };
复制代码


  • HttpsProxyAgent("<http://127.0.0.1:7899>"):这里我们依然使用同一个署理地址。
  • httpsAxios.defaults.httpsAgent:为 HTTPS 请求设置 httpsAgent。
  • httpsAxios.defaults.proxy = false:禁用内置的 axios 署理,因为我们手动定义了署理。
4. 配置 SOCKS5 署理

为了支持 SOCKS5 署理,我们需要使用 SocksProxyAgent:
  1. const socks5 = () => {
  2.   const socks5Agent = new SocksProxyAgent("socks5://127.0.0.1:7898");
  3.   socks5Axios.defaults.httpsAgent = socks5Agent;
  4.   socks5Axios.defaults.proxy = false;
  5.   socks5Axios.get("https://ipinfo.io").then((res) => {
  6.     console.log(res.data);
  7.   }).catch((err) => {
  8.     console.log(err.message);
  9.   });
  10. };
复制代码


  • SocksProxyAgent("socks5://127.0.0.1:7898"):定义 SOCKS5 署理地址。我们使用本地的 7898 端口。
  • socks5Axios.defaults.httpsAgent:将 socks5Agent 作为 axios 的 httpsAgent。
  • socks5Axios.defaults.proxy = false:禁用 axios 自带的署理功能。
5. 实行代码

最后,我们将全部署理请求依次实行:
  1. http();
  2. https();
  3. socks5();
复制代码
完整代码

以下是完整的代码实现:
  1. import axios from "axios";
  2. import { HttpProxyAgent } from "http-proxy-agent";
  3. import { HttpsProxyAgent } from "https-proxy-agent";
  4. import { SocksProxyAgent } from "socks-proxy-agent";
  5. let httpAxios = axios;let httpsAxios = axios;let socks5Axios = axios;const http = () => {
  6.   const httpAgent = new HttpProxyAgent("http://127.0.0.1:7899");
  7.   httpAxios.defaults.httpAgent = httpAgent;
  8.   httpAxios.defaults.proxy = true;
  9.   httpAxios.get("http://ipinfo.io", {}).then((res) => {
  10.     console.log(res.data);
  11.   });
  12. };
  13. const https = () => {
  14.   const httpsAgent = new HttpsProxyAgent("http://127.0.0.1:7899");
  15.   httpsAxios.defaults.httpsAgent = httpsAgent;
  16.   httpsAxios.defaults.proxy = false;
  17.   httpsAxios.get("https://ipinfo.io", {}).then((res) => {
  18.     console.log(res.data);
  19.   });
  20. };
  21. const socks5 = () => {
  22.   const socks5Agent = new SocksProxyAgent("socks5://127.0.0.1:7898");
  23.   socks5Axios.defaults.httpsAgent = socks5Agent;
  24.   socks5Axios.defaults.proxy = false;
  25.   socks5Axios.get("https://ipinfo.io").then((res) => {
  26.     console.log(res.data);
  27.   }).catch((err) => {
  28.     console.log(err.message);
  29.   });
  30. };
  31. http();
  32. https();
  33. socks5();
复制代码
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

来自云龙湖轮廓分明的月亮

金牌会员
这个人很懒什么都没写!

标签云

快速回复 返回顶部 返回列表