I’m using the Http Service to send data to my website(Node.JS). To just make sure everything is working I’m not using any variables and all I return to the Roblox game it the request.query. However in the output I get the error:
23:25:54.067 HTTP 404 (Not Found) - Server - Script:17
Below is my Roblox code:
local HttpService = game:GetService("HttpService")
local url = "https://rope.bulkbrains.com/logdata"
local response = HttpService:PostAsync(url, "data=true")
print(response)
I believe it is because you are not appending the “?” separator to the url before you add the data. So either add the “?” to the url value or the response data value “?data=true”