How can I have a server be listening for HTTP requests from my web API?

I have made a web API that I would like to use for my games. It’ll be for things such as moderation or to general management over a server. I know it is possible as from games such as ER:LC that have exactly what I’m looking for. Any ideas?

You can try checking a specific url of your API at a specific interval(for example each second) and from there get information on if your Roblox server needs to process some sort of command or not(depending on how you show said data on the url endpoint). Roblox allows you to make 500 HTTP requests per minute I think, so making 60 requests per minute for that is nowhere near the limit.

Obviously if you want to implement multiple such commands, lets say 100 of them, you should not make 60*100 calls to the API per minute, just batch them into a single call so you only need 60.

1 Like

Alright, Ill give this a try. Thanks : D

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.