It's a hard question, I know, but i was wondering because http requests don't seem to work for http://discordapp.com/api.
I've tried using this code:
hr = game:getService('HttpRequest') hr:GetAsync("discordapp.com/guilds/<insert id here>", true)
and got nothing.
Please first consider whether or not you actually need to use Discord for what you're doing. Discord is an instant messaging service, not:
There's a better tool for the job if you need something specific.
In any case, firstly it's worth noting that ServiceProvider:getService()
is probably deprecated, so you should switch to game:GetService()
. Furthermore, the service name is HttpService
, not HttpRequest
.
The issue at hand is that due to massive abuse of the Discord API from Roblox developers who think that every problem is a nail and Discord and Trello are hammers, Discord blocks requests coming from Roblox directly.
You're still allowed to use the Discord API from your Roblox game, but you need to route your API requests through some sort of proxy. It's important to make sure that you follow the Discord rules for using their API, and again, consider that there may be a better tool for the job.