In studio, I’m able to read it using HttpService, but I’m unsure how I write to it, and change the content.
Already looked around the web and was unable to find anything, hence why I’m making this topic.
(Here is what I am using to read the data. JSON is valid, everything here is fine)
local Success, Returned = pcall(function()
return http:PostAsync(url) -- Put in your parameters (what your sending to the external server)
end)
if Success then
-- red data again, changes should have been made
else
-- parse the http error
end