Skip to content

Instantly share code, notes, and snippets.

View sl-service-account's full-sized avatar

sl-service-account

  • Linden Lab
View GitHub Profile
@sl-service-account
sl-service-account / patch_example.lsl
Last active June 13, 2023 19:51
Example of making a HTTP PATCH request with llHTTPRequest
default {
state_entry() {
// Make a PATCH request
llHTTPRequest("http://httpbin.org/patch", [
HTTP_METHOD, "PATCH",
HTTP_MIMETYPE, "application/json"],
"{}"
);
}