如何使用 Roblox HttpService 连接到网络服务器?
How to use Roblox HttpService to connect to a webserver?
我如何使用 Roblox HttpService 连接到网络服务器并在上面有一个文本框和按钮,以便我可以通过网站和 Roblox 执行命令 returns“操作成功”或“操作失败”
how to send a command from the webserver?
客户端必须主动从服务器获取该命令。客户端发送请求,服务器发送响应。这就是HTTP的原理。
此外,Roblox 文档在第一行中说:
This service allows HTTP requests to be sent FROM game servers.
您的游戏服务器是HTTP客户端。
轮询 HTTP 服务器以获取新指令是从远程服务器获取命令的唯一方法。
How can i connect to a webserver with Roblox HttpService and have a
textbox and button on there so i can execute commands over the website
and Roblox returns "Action Successful" or "Action Failed"
您在该服务器上托管了一个带有该输入表单的网站。单击按钮时,您将该信息存储在服务器上,当您的 Roblox 客户端轮询您提供的信息时。
请理解我无法详细解释整个过程,因为这需要我写一两本书。有很多关于 HTTP、虚拟主机、HTML 等方面的教程和书籍。 roblox 部分在手册及其示例中得到了很好的介绍。
我如何使用 Roblox HttpService 连接到网络服务器并在上面有一个文本框和按钮,以便我可以通过网站和 Roblox 执行命令 returns“操作成功”或“操作失败”
how to send a command from the webserver?
客户端必须主动从服务器获取该命令。客户端发送请求,服务器发送响应。这就是HTTP的原理。
此外,Roblox 文档在第一行中说:
This service allows HTTP requests to be sent FROM game servers.
您的游戏服务器是HTTP客户端。
轮询 HTTP 服务器以获取新指令是从远程服务器获取命令的唯一方法。
How can i connect to a webserver with Roblox HttpService and have a textbox and button on there so i can execute commands over the website and Roblox returns "Action Successful" or "Action Failed"
您在该服务器上托管了一个带有该输入表单的网站。单击按钮时,您将该信息存储在服务器上,当您的 Roblox 客户端轮询您提供的信息时。
请理解我无法详细解释整个过程,因为这需要我写一两本书。有很多关于 HTTP、虚拟主机、HTML 等方面的教程和书籍。 roblox 部分在手册及其示例中得到了很好的介绍。