source: Dev/trunk/src/node_modules/request/tests/test-s3.js @ 489

Last change on this file since 489 was 484, checked in by hendrikvanantwerpen, 11 years ago

Commit node_modules, to make checkouts and builds more deterministic.

File size: 340 bytes
Line 
1var request = require('../index')
2
3var r = request.get('https://log.curlybracecast.com.s3.amazonaws.com/',
4  { aws:
5    { key: 'AKIAI6KIQRRVMGK3WK5Q'
6    , secret: 'j4kaxM7TUiN7Ou0//v1ZqOVn3Aq7y1ccPh/tHTna'
7    , bucket: 'log.curlybracecast.com'
8    }
9  }, function (e, resp, body) {
10    console.log(r.headers)
11    console.log(body)
12  }
13)
Note: See TracBrowser for help on using the repository browser.