HttpGet (Method): Difference between revisions
From Legacy Roblox Wiki
Jump to navigationJump to search
>ArceusInator example |
>Camoy URI is more general |
||
Line 1: | Line 1: | ||
{{Locked}} | {{Locked}} | ||
<onlyinclude>{{Method|name = HttpGet | <onlyinclude>{{Method | ||
|arguments = [[string]] '' | |name = HttpGet | ||
|arguments = [[string]] ''URI'' | |||
|returns = [[string]] ''request body'' | |returns = [[string]] ''request body'' | ||
|description = Retrieves HTML of the URI via get variable method. | |description = Retrieves HTML of the URI via get variable method. | ||
Line 7: | Line 8: | ||
}}</onlyinclude> | }}</onlyinclude> | ||
{{clear floats}} | |||
{{Example| | {{Example| | ||
Line 26: | Line 14: | ||
print( game:HttpGet( "http://www.roblox.com/User.aspx?ID=4812582" ) ) --> s HttpGet</pre> | print( game:HttpGet( "http://www.roblox.com/User.aspx?ID=4812582" ) ) --> s HttpGet</pre> | ||
If using a [[Script]] or a [[LocalScript]]...<pre> | If using a [[Script]] or a [[LocalScript]]...<pre> | ||
print( game:HttpGet( "http://www.roblox.com/User.aspx?ID=4812582" ) ) --> s HttpGet</pre>}} | print( game:HttpGet( "http://www.roblox.com/User.aspx?ID=4812582" ) ) --> s HttpGet | ||
</pre>}} | |||
[[Category:Methods]] | [[Category:Methods]] |
Revision as of 13:55, 31 December 2010
Protected:This item is protected. Attempting to use it in a Script or LocalScript will cause an error.
HttpGet( string URI ) | |
Returns | string request body |
Description: | Retrieves HTML of the URI via get variable method. |
Member of: | DataModel |
Example
If using the Command Bar or a CoreScript...print( game:HttpGet( "http://www.roblox.com/User.aspx?ID=4812582" ) ) --> s HttpGetIf using a Script or a LocalScript...
print( game:HttpGet( "http://www.roblox.com/User.aspx?ID=4812582" ) ) --> s HttpGet