I was recently working on a ban system, and created a discord logging service along with it, for better understanding and logging. The problem is that Discord blocks Roblox API so I have to come up with another solution. This is just a an idea but, is it possible to make a site receive our data then make a request to discord?
I already have a glitch site, I just need to know the JavaScript code. Now, I know I am asking for some pre-done code, but in my case I have only some knowledge about web-development.
Now from my understanding, it seems that you’re trying to use a discord webhook for logging. Ofc, this is a terrible idea due to the fact that your can send 2 requests per second. Which isn’t enough. Instead, you should make a discord bot to handle these requests as those have a 50 request limit per second. Which should be more than enough. Another thing, glitch doesn’t provide 24/7 hosting for free. Which means once you close their site, your proxy wont be hosted anymore.
Github pages won’t be good in this case: a proxy is not a static website which is the only type that Github pages allow to host. In this case this is a dynamic website because it would run a web server with routes. I personally use railway.app but heroku is good too. Also making a proxy is not easy without a good understanding of javascript
Discord does not allow you to use Webhooks for logging. I don’t know about bots but you could use one if it’s allowed (read discord’s tos), you would then need to run a web server and a client and host it (not on Github as this is dynamic). If you want to use a bot i suggest discord.js for the bot client and express.js. For the bot client there are some tutorials but for what regards the server it is quite advanced