HttpGet (Method): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>Camoy
URI is more general
>Blocco
No edit summary
Line 2: Line 2:
<onlyinclude>{{Method
<onlyinclude>{{Method
|name = HttpGet
|name = HttpGet
|arguments = [[string]] ''URI''
|arguments = [[string]] ''URI''[, [[bool]] ''synchronous'']
|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 11: Line 11:


{{Example|
{{Example|
If using the [[Command Bar]] or a [[CoreScript]]...<pre>
{{CodeExample}}
print( game:HttpGet( "http://www.roblox.com/User.aspx?ID=4812582" ) ) --> s HttpGet</pre>
-- Correct security context will allow you to get variables from an HTML document.
If using a [[Script]] or a [[LocalScript]]...<pre>
 
print( game:HttpGet( "http://www.roblox.com/User.aspx?ID=4812582" ) ) --> s HttpGet
print(game:HttpGet("<nowiki>ht</nowiki>tp://somesite/", true); --> However, in Roblox, only external code is allowed to call this, so you will get an error saying "s HttpGet"
</pre>}}
</pre>}}


[[Category:Methods]]
[[Category:Methods]]

Revision as of 18:39, 31 December 2010

Protected:This item is protected. Attempting to use it in a Script or LocalScript will cause an error.
HttpGet( string URI[, bool synchronous] )
Returns string request body
Description: Retrieves HTML of the URI via get variable method.
Member of: DataModel


Example

Template:CodeExample -- Correct security context will allow you to get variables from an HTML document.

print(game:HttpGet("http://somesite/", true); --> However, in Roblox, only external code is allowed to call this, so you will get an error saying "s HttpGet"