16 lines
411 B
Markdown
16 lines
411 B
Markdown
|
# Using Proxy to avoid 429
|
||
|
|
||
|
```js
|
||
|
const { Player } = require("discord-player");
|
||
|
const HttpsProxyAgent = require("https-proxy-agent");
|
||
|
|
||
|
// Remove "user:pass@" if you don't need to authenticate to your proxy.
|
||
|
const proxy = "http://user:pass@111.111.111.111:8080";
|
||
|
const agent = HttpsProxyAgent(proxy);
|
||
|
|
||
|
const player = new Player(client, {
|
||
|
ytdlDownloadOptions: {
|
||
|
requestOptions: { agent }
|
||
|
}
|
||
|
});
|
||
|
```
|