有没有一种方法可以强制node.js对他发送的每个请求(POST,GET)使用代理?

时间:2019-04-02 21:34:08

标签: node.js sockets proxy

请为我的英语不好而道歉!我正在使用Ring Central API(API发送/接收短信/通话)。我使用node.js与RING CENTRAL API进行通信。问题是我对编程真的是陌生的(仅用于帮助我一些api和自动化)。

我在google上阅读了很多书,并找到了一些不错的网站,但仍然不是我想要的:

  1. Doing http requests through a SOCKS5 proxy in NodeJS这个解释还不够,所以我可以理解得很好,并编写自己的代码...
  2. https://www.example-code.com/nodejs/http_socks5_proxy.asp(这看起来确实不错,但看起来又不像他强迫所有HTTPS进行代理,但仅强制执行某些功能。
  3. https://medium.com/@paynoattn/using-a-socks-proxy-to-make-requests-in-node-js-ba5125c7999f,这个看起来很容易理解,但是没用...

所以我正在寻找我可能会喜欢的代码:

if (page == '/Proxy:port') {

    //Here i would like to force serve to use (Proxy:port)
    //Then start sendsms() that send POST/GET to ring central API
    sendsms()

}

0 个答案:

没有答案