Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

What happens to the sent information using HttpService PostAsync?

Asked by 9 years ago

Using the httpservice when you postasync, what happens with the data? It gets to the website and then what? It is automatically collected? where is it stored? Why do I need my own website? Do I need to do anything besides postasync from Lua to make sure my website receives the data?

0
Once data is sent, it's up to the website on how to handle it DigitalVeer 1473 — 9y

1 answer

Log in to vote
0
Answered by
Merely 2122 Moderation Voter Community Moderator
9 years ago

When you use HttpService:PostAsync, the ROBLOX game server sends out a web request with the data included in the POST body. The page that receives the data can do whatever it wants with the data, like writing it to a text file, or adding an item to a database.

Ad

Answer this question