Http.request('http://www.example.com/data.json') // GET data from a URLHttp.request('http://www.example.com/api/person',{// POST data to a URLmethod:'post',headers:{'X-Auth-Token':'secret_token'},data:{firstName:'John',age:30}})Http.request('http://www.example.com/api/big-data',{// POST, but don't wait for resultwait:false,method:'post',data:{}})