i_obf
(karbon)
January 18, 2022, 7:13pm
#1
So I was experimenting with Roblox to discord webhooks and found something out: Discord unblocked Roblox webhook requests?
When I use the webhook https://discord.com/api/webhooks/***
, everything seems to work. What’s funnier, is that when I proxy this webhook, that’s when I get an error.
Any thoughts? Or is it just me?
1 Like
regexman
(reg)
January 18, 2022, 7:15pm
#2
Did you try playing not in studio? Also I’m happy to hear if that’s true.
i_obf
(karbon)
January 18, 2022, 7:16pm
#3
Yes, I did. Everything seems to work normally.
regexman
(reg)
January 18, 2022, 7:17pm
#4
ME OMW TO USE DISCORD WEBHOOKS AGAIN
imma test it later
i_obf
(karbon)
January 18, 2022, 7:18pm
#5
Sorry, but what is “ME OMW” mean? XD
i_obf
(karbon)
January 18, 2022, 7:19pm
#7
Ok thanks lol. Confused me there.
michialok
(michialok)
January 18, 2022, 7:24pm
#8
It doesnt work for me Its still saying: “HTTP 403 (Forbidden)”
I wonder how you managed to use discords webhook. Guess we still have to use proxys
regexman
(reg)
January 18, 2022, 7:52pm
#9
Worked in studio, but still did not test it ingame
Range_Law
(Range_Law)
January 20, 2022, 6:22pm
#10
What proxies do you usually use for this type of thing? I had something that I made with webhooks and it’d be cool if it worked again and I was sad to see it didn’t work. Like any links if you got any would be cool. Cause I’d like to fix the webhook integration.
regexman
(reg)
January 20, 2022, 6:23pm
#11
Sorry for that late reply but it didn’t work, I had to use a proxy
michialok
(michialok)
January 20, 2022, 6:34pm
#12
I use “hooks.hyra.io
”
You just replace the discord.com
with hooks.hyra.io
.
For more information check out this post.
1 Like
mitex7183
(mitex)
January 20, 2022, 9:02pm
#13
Studio session is based on your ip (or localhost) and in-game it’s the server’s ip which is banned of discord
i_obf
(karbon)
January 21, 2022, 12:57pm
#14
problem with this is that if i wanted to make a feedback system, id have to get the user to replace discord.com with hooks.hyro.io …
michialok
(michialok)
January 21, 2022, 1:09pm
#15
I dont really know what you mean? But you can just use string.gsub to replace the discord.com
with hooks.hyra.io
!
Example:
local myWebhook = "https://discord.com/api/webhooks/**/**"
local myWebhookButProxy = string.gsub(myWebhook,"discord.com","hooks.hyra.io")
print(myWebhookButProxy) -- output: "https://hooks.hyro.io/api/webhooks/**/**"
i_obf
(karbon)
January 21, 2022, 1:53pm
#16
oh wow! this is amazing! thank you so much! what a life saver!