Difference between revisions of "Http.get"
From ComputerCraft Wiki
(Moved to CAT:LuaCoreFunctions) |
|||
| Line 14: | Line 14: | ||
}} | }} | ||
}} | }} | ||
| + | |||
| + | [[Category:Lua_Core_Functions]] | ||
Revision as of 18:49, 28 November 2012
| Returns a table similar to that returned by an fs.open() call, used to handle the response of the server on success or nil on failure. | |
| Syntax | http.get(string url) |
| Returns | The response of the server on success or nil on failure. |
| Part of | ComputerCraft |
| API | HTTP |
Examples
| Gets the content of example.com (in HTML) | |
| Code |
local sExample = http.get("http://example.com/") --Get contents of page
|
| Output | The source of example.com |