Difference between revisions of "Http response"

From Second Life Wiki
Jump to navigation Jump to search
m
Line 4: Line 4:
|p3_type=list|p3_name=metadata|p3_desc=List of HTTP_* constants and attributes
|p3_type=list|p3_name=metadata|p3_desc=List of HTTP_* constants and attributes
|p4_type=string|p4_name=body|p4_desc
|p4_type=string|p4_name=body|p4_desc
|event_desc=Triggered when task receives a response to one of it's {{LSLG|llHTTPRequest}}s
|event_desc=Triggered when task receives a response to one of it's {{LSLG|llHTTPRequest}}<nowiki>s</nowiki>
|constants={{{!}}{{Prettytable}}
|constants={{{!}}{{Prettytable}}
{{!}}-{{Hl2}}
{{!}}-{{Hl2}}

Revision as of 07:04, 22 March 2007

Description

Event: http_response( key request_id, integer status, list metadata, string body ){ ; }

Triggered when task receives a response to one of it's llHTTPRequests

• key request_id Matches return from llHTTPRequest
• integer status HTTP code (like 404 or 200)
• list metadata List of HTTP_* constants and attributes
• string body
Constant Type Description
HTTP_BODY_TRUNCATED 0 integer Truncation point in bytes

Examples

key http_request_id;

default
{
    state_entry()
    {
        http_request_id = llHTTPRequest("url", [], "");
    }

    http_response(key request_id, integer status, list metadata, string body)
    {
        if (request_id == http_request_id)
        {
            llSetText(body, <0,0,1>, 1);
        }
    }
}

Notes

If for some reason while using llHTTPRequest/http_response you are unable to parse a known good RSS feed or some other form of web contents, you will need to work around it outside of SecondLife. This is unlikely to change in the near future since checking the headers requires more overhead at the simulator level.

See Also

Functions

Deep Notes

Signature

event void http_response( key request_id, integer status, list metadata, string body );