API POST Request to Roblox

Hi there, I’m fairly new to programming and I’m attempting to make something where I can send a POST request from an API that I’ve built to Roblox.

For example, I can utilize the URL: https://examply.com/api/kick/:uID. And I’d want that to kick a user in the game. I’m able to code the majority of that, however, how would I go about having Roblox detect that I sent a POST request?

I’ll be using express.js for this project.

You can’t post to the Roblox game servers. You will have to use long polling.

The idea is that you send a GET request and you hold that GET request until you want to do a POST. Then you return that response to the GET request as if you just made a POST request.

2 Likes