llHTTPRequest

From Second Life Wiki
Revision as of 22:00, 30 January 2007 by Bleevo Plessis (talk | contribs)
Jump to navigation Jump to search

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();