Created
April 11, 2016 02:03
-
-
Save neurotech/ed28a01d2d0bd45653ff91a5f6717364 to your computer and use it in GitHub Desktop.
request object
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var exampleRequest = { | |
headers: { | |
host: 'localhost', | |
Authorization: 'Basic username:accessKey', | |
Server: 'rollbar-relay Example Application' | |
}, | |
protocol: 'https', | |
url: '/index.html?foo=bar', | |
method: 'GET', | |
body: 'body', | |
route: { | |
path: 'home/index' | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment