The Internet Archive discovers and captures web pages through many different web crawls. At any given time several distinct crawls are running, some for months, and some every day or longer. View the web archive through the Wayback Machine.
The Wayback Machine - https://web.archive.org/web/20150908140028/https://developer.atlassian.com/static/connect/docs/latest/javascript/module-request.html
Documentation
request
Methods
request(url, options)
Execute an XMLHttpRequest in the context of the host application. The format of the response (dataType) will always be set to "text" - even if specified.
Parameters:
Name
Type
Description
url
String
either the URI to request or an options object (as below) containing at least a 'url' property; this value should be relative to the context path of the host application.
// Display an alert box with a list of JIRA dashboards using the JIRA REST API. AP.require('request', function(request){ request({ url: '../assets/js/rest-example.json', success: function(responseText){ alert(responseText); } }); });