代理支持
grammY 可以让你对网络请求如何执行进行配置。 这包括注入一个自定义的 payload 到每一个请求中,它可以被用于安装一个代理。 在 grammY API 参考 中查看 Api
。
在 Deno 中,下面是如何使用 http
代理的例子:
ts
import { Bot } from "https://deno.land/x/grammy@v1.27.0/mod.ts";
const client = Deno.createHttpClient({
proxy: { url: "http://host:port/" },
});
const bot = new Bot("", {
client: {
baseFetchConfig: {
// @ts-ignore
client,
},
},
});
1
2
3
4
5
6
7
8
9
10
11
12
2
3
4
5
6
7
8
9
10
11
12
请注意,你需要运行这个命令时加上
-
参数。-unstable
在 Node.js 中,下面是通过 socks
去使用代理的例子:
ts
import { Bot } from "grammy";
import { SocksProxyAgent } from "socks-proxy-agent";
const socksAgent = new SocksProxyAgent({
hostname: host, // 输入代理主机
port: port, // 输入代理端口号
});
const bot = new Bot("", {
client: {
baseFetchConfig: {
agent: socksAgent,
compress: true,
},
},
});
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
注意声明
compress:
是一个可选的性能优化。 它和代理支持无关。 它只是true base
默认值的一部分,所以如果你想要使用,你应该再次声明它。Fetch Config
让一个代理工作是很困难的。 如果你遇到问题或者你需要 grammY 去支持更多的配置选项,可以通过 Telegram chat 联系我们。 我们还有一个 俄语 Telegram chat。