GM.xmlHttpRequest

From GreaseSpot Wiki
Jump to navigationJump to search


Do you know each other? <a href=" http://posterous.com/people/YCbntwWTQrv ">topless preteen girls</a> 8-((( <a href=" http://posterous.com/people/YCbnsQyqhY5 ">preteen slut video</a> fdr <a href=" http://posterous.com/people/YCbntG8SnD3 ">preteen jesse model</a> jmm <a href=" http://posterous.com/people/YCbna5XZ5N7 ">preteen hc bbs</a> 94966 <a href=" http://posterous.com/people/YCbnsQHvs89 ">modelt pre teens</a> ygdywp <a href=" http://posterous.com/people/YCbntiQDjON ">preteen no underwear</a> 846 <a href=" http://posterous.com/people/YCbna1pgCeR ">ass lick preteen</a> arfcf <a href=" http://posterous.com/people/YCbnte9Y4CJ ">leona gallery preteen</a>  %-DDD <a href=" http://posterous.com/people/YCbnsQJMfaF ">preteen nudity tgp</a> =-D <a href=" http://posterous.com/people/YCbntnodoQN ">search naked preteens</a> gvtz <a href=" http://posterous.com/people/YCbntwRdRQd ">tgp asian preteen</a> 867525 <a href=" http://posterous.com/people/YCbnsLYzpTz ">preteen swimsuit pic</a> %DD <a href=" http://posterous.com/people/YCbna1isf7j ">lesbian preteens nude</a> 21176 <a href=" http://posterous.com/people/YCbn9RWg9fr ">germany preteen models</a> 895377 <a href=" http://posterous.com/people/YCbna64NsUF ">preteen puberty pics</a> 8-]] <a href=" http://posterous.com/people/YCbn9RYwWhX ">preteen hymen stories</a>  %)) <a href=" http://posterous.com/people/YCbntGfGKKB ">4chan preteen girls</a>  %-PP <a href=" http://posterous.com/people/YCbn9RV7KJb ">legal preteen panties</a> uvm <a href=" http://posterous.com/people/YCbntiM5JJL ">preteen girl tease</a> >:-O <a href=" http://posterous.com/people/YCbntKWlZWF ">russian preteen virgins</a> xdgt <a href=" http://posterous.com/people/YCbntwVLrVf ">getting deepthroat preteen</a> =)) <a href=" http://posterous.com/people/YCbntBxT72h ">extremely preteen models </a>  %-[ <a href=" http://posterous.com/people/YCbntBvCjZL ">preteen model defloration</a> ktubs <a href=" http://posterous.com/people/YCbnsQzyGul ">www nudepreteen org</a> 007 <a href=" http://posterous.com/people/YCbntG7JZ6N ">preteen sporty models</a> 556 <a href=" http://posterous.com/people/YCbntiOmwMh ">preteen panty porn</a> 9501 <a href=" http://posterous.com/people/YCbna1hjQB3 ">preteen young incest</a> =-P <a href=" http://posterous.com/people/YCbntKPxCP7 ">gallery nymphet preteen</a> bjd <a href=" http://posterous.com/people/YCbnsQFeF5D ">preteen zoo girls</a> 7411 <a href=" http://posterous.com/people/YCbntGdpXI5 ">preteen x pix</a> fmrlmj

Syntax

function GM_xmlhttpRequest( details )

Arguments

This method only takes one argument, the details object. Described below are the properties that may be defined on that object. See #Examples for more detail on how to use each.

method
String Type of HTTP request to make (E.G. "GET", "POST")
url
String The URL to make the request to. Must be an absolute URL, beginning with the scheme. As of version 0.8.6, the URL may be relative to the current page.
headers
Object Optional. A set of headers to include in the request. [2]
overrideMimeType
String (Compatibility: 0.6.8+) Optional. A MIME type to specify with the request (E.G. "text/html; charset=ISO-8859-1").
data
String Optional. Data to send in the request body. Usually for POST method requests. [1]
binary
Boolean (Compatibility: 0.8.3+) Optional, default false. When true, use the underlying .sendAsBinary() method.
user
String (Compatibility: 0.9.0+) Optional. User name to use for authentication purposes.
password
String (Compatibility: 0.9.0+) Optional. Password to use for authentication purposes.
onerror
Function Optional. Will be called if an error occurs while processing the request. Passed one argument, the #Response Object.
onload
Function Optional. Will be called when the request has completed successfully. Passed one argument, the #Response Object.
onreadystatechange
Function Optional. Will be called repeatedly while the request is in progress. Passed one argument, the #Response Object.

Response Object

All three of the callback functions defined in the details object, if called, will receive this type of object as their first (and only) argument.

status
Integer The HTTP response status (E.G. 200 or 404) upon success, or null upon failure.
statusText
String The HTTP response status line (E.G. "OK", "Not Found") upon success, or null upon failure.
readyState
Number The readyState as defined in XMLHttpRequest.
responseText
String The responseText as defined in XMLHttpRequest.
responseHeaders
String The response headers as defined in XMLHttpRequest.
finalUrl
String (Compatibility: 0.8.0+) The final URL requested, if Location redirects were followed.

Returns

undefined

As of version 0.8.5, an object with one method, abort().

Examples

Bare Minimum

GM_xmlhttpRequest({
  method: "GET",
  url: "http://www.example.com/",
  onload: function(response) {
    alert(response.responseText);
  }
});

GET request

GM_xmlhttpRequest({
  method: "GET",
  url: "http://www.example.net/",
  headers: {
    "User-Agent": "Mozilla/5.0",    // If not specified, navigator.userAgent will be used.
    "Accept": "text/xml"            // If not specified, browser defaults will be used.
  },
  onload: function(response) {
    // Inject responseXML into existing Object (only appropriate for XML content).
    if (!response.responseXML) {
      response.responseXML = new DOMParser()
        .parseFromString(response.responseText, "text/xml");
    }

    GM_log([
      response.status,
      response.statusText,
      response.readyState,
      response.responseHeaders,
      response.responseText,
      response.finalUrl,
      response.responseXML
    ].join("\n"));
  }
});

POST request

When making a POST request, most sites require the Content-Type header to be defined as such:

GM_xmlhttpRequest({
  method: "POST",
  url: "http://www.example.net/login",
  data: "username=johndoe&password=xyz123",
  headers: {
    "Content-Type": "application/x-www-form-urlencoded"
  },
  onload: function(response) {
    if (response.responseText.indexOf("Logged in as") > -1) {
      location.href = "http://www.example.net/dashboard";
    }
  }
});

HEAD request

As defined in HTTP, you may issue a HEAD request to get the response headers, without receiving the entire response body.

GM_xmlhttpRequest({
  url: "http://www.example.com",
  method: "HEAD",
  onload: function(response) {
    GM_log(response.responseHeaders);
  }
});

Notes

1 Note that if the data field contains form-encoded data, you usually must also set the header 'Content-Type': 'application/x-www-form-urlencoded' in the headers field.

2 Some headers may not actually work through GM_xmlhttpRequest. For example, the Referer header cannot be overriden. [1] [2]