Is it possible to use this server to send POST requests to discord webhooks?
I recently tried using the following URL http://localhost:3000/api/webhooks/my_webhook, this is replacing https://discord.com/api/webhooks/my_webhook with http://localhost:3000 as the base.
The post request failed, and this is the log from the server
2022-08-15T04:33:41.681536Z INFO twilight_http_proxy: Listening on http://0.0.0.0:3000
2022-08-15T04:33:51.290020Z ERROR twilight_http_proxy: Error when requesting the Discord API: hyper::Error(Connect, ConnectError("dns error", ResolveError { kind: Proto(ProtoError { kind: Io(Os { code: 111, kind: ConnectionRefused, message: "Connection refused" }) }) }))
this is the response by the http_client
Response: Method - POST Url - http://localhost:3000/api/webhooks/my_webhool - Status 502 - Headers - Headers({'content-length': '44', 'date': 'Mon, 15 Aug 2022 04:33:51 GMT'})
I'm processing a queue of messages where each message contains a Discord Webook for its destination (these webhooks are from different accounts that are not owned by myself.)
Is it possible to use this server to send POST requests to discord webhooks?
I recently tried using the following URL
http://localhost:3000/api/webhooks/my_webhook, this is replacinghttps://discord.com/api/webhooks/my_webhookwithhttp://localhost:3000as the base.The post request failed, and this is the log from the server
this is the response by the http_client
I'm processing a queue of messages where each message contains a Discord Webook for its destination (these webhooks are from different accounts that are not owned by myself.)