I’m so glad somebody made this, I used Discord webhooks all the time before roblox was blacklisted and really missed the functionality - that is until you created this proxy server. I wish I could’ve thanked your earlier! (just got in devforum)
also can i say how smart it is to have the server send a message through your webhook when it gets blacklisted
Can you elaborate on how you were using Discord webhooks? Were you showing them to players? Did you send PII / chats of players unfiltered over the webhooks?
It was an application center. Everytime a response was sent, it was posted to a webhook. I guess thats unfiltered over webhooks, but is there a way around it?
Being a bit skeptical about discord webhooks and its legalities with ROBLOX, I decided to use zapier.com to collect webhooks from ROBLOX, then I would post the webhook from Zapier to Discord.
According to posts above, this would be legal, correct?
If its legal:
Use this (I would suggest pcalling the event, but im not sure if it is useful or not):
local webhook = "webhooklink" --Place link inside quotes
local success, message = pcall(function()
HttpService:PostAsync(webhook, "This is a webhook")
end)
First option: Webhooks by Zapier
Trigger Event: Catch Raw Hook (Catch raw body up to 2 MB)
Copy the link and paste the link into the script
Skip test and continue
Second Option: Webhooks by Zapier
Action Event: POST
Paste your discord webhook link into “URL” box
Payload Type “Json”
Data box 1 should have “content”
Data box 2, click “+Insert the field” button and click “Raw Body”. Although it says no data it will contain data whenever zapier is called
Wrap request in array: no
Unflatten: yes
Continue, save without testing, and turn zapier on.
I haven’t gotten any errors with using Discord Webhooks, I’ve used them with anti-exploit logs and a group I worked for (British Army) used them and they have at least a hundred webhooks a day.
How about adding a timer between any amount of errors sent? Like only 2 requests sent every 2 seconds and it won’t DDoS the Discord servers.
It’s like gillern (or gilern)'s suggestion system but in errors instead of suggestions
Well, it won’t DDoS the servers, you’ll just be ratelimited. Error logging on Discord is not the best, when you could do it on an alternative platform like Google Analytics.