Difference between revisions of "LlHTTPRequest"

From Second Life Wiki
Jump to navigation Jump to search
Line 9: Line 9:
|func_footnote=Sends a HTTP request to the specified url with the body of the request and parameters.
|func_footnote=Sends a HTTP request to the specified url with the body of the request and parameters.
|spec
|spec
|caveats=
|caveats=Cannot be used to load textures or images from the internet, for more information see [[Web Textures]].
|examples=<lsl>default
|examples=<lsl>default
{
{

Revision as of 22:00, 30 January 2007

Summary

Function: key llHttpRequest( );

Returns a key unique key identifying the http request made.

Sends a HTTP request to the specified url with the body of the request and parameters.

Caveats

  • This function causes the script to sleep for 0.05 seconds.Cannot be used to load textures or images from the internet, for more information see Web Textures.
All Issues ~ Search JIRA for related Bugs

Examples

<lsl>default {

   state_entry()
   {
       llHttpRequest("url", [], "");
   }
}</lsl>

See Also

Deep Notes

Search JIRA for related Issues

Signature

function key llHttpRequest();