1.5.1 • Published 7 years ago

requestbin v1.5.1

Weekly downloads
5
License
Unlicense
Repository
github
Last release
7 years ago

requestbin

RequestBin API methods for Node.js

npm Build Status Coverage Status Dependencies Code Quality

Usage

var requestbin = require ('requestbin');

requestbin.create (false, function (err, data) {
  if (err) { return console.log (err); }

  console.log ('Send requests to: http://requestb.in/' + data.name);
  console.log ('Inspect requests: http://requestb.in/' + data.name + '?inspect');
});

Installation

npm install requestbin

Callback & errors

The callback receives only one parameter err in case of an error. This will be aninstanceof Error with stack trace and sometimes more properties to describe the error.

When everything seems fine the err param is null and a second param data contains the result.

function callback (err, data) {
  if (!err) {
    console.log (data);
  } else {
    console.log (err);          // message + info properties, ie. details
    console.log (err.stack);    // what caused it
  }
}

Errors

messagedescription
request failedRequest can't be made
invalid responseAPI did not return JSON data
HTTP errorHTTP error like 404

.config ( object )

Set configuration options.

nametypedefaultdescription
timeoutinteger5000Request time out in ms
ifacestringOutbound interface to use
baseURLstringhttp://requestb.in/api/v1/API Base URL
userAgentstringrequestbin.js (https://github.com/fvdm/nodejs-requestbin)User Agent
requestbin.config ({
  iface: '1.2.3.4'
});

.create ( isPrivate, callback )

Create a new bin.

paramtyperequireddefaultdescription
isPrivatebooleannotrueSet to true to make this request bin private.
callbackfunctionyesCallback function
// make it public
requestbin.create (false, console.log);
{ color: [ 70, 150, 120 ],
  name: 'oiwxgloi',
  private: false,
  request_count: 0 }

The test URL is http://requestb.in/NAME The inspect URL is http://requestb.in/NAME?inspect

.get ( binName, callback )

Get details about a bin.

paramtyperequireddefaultdescription
binNamestringyesBin name/ID to retrieve
callbackfunctionyesCallback function
requestbin.get ('oiwxgloi', console.log);
{ color: [ 70, 150, 120 ],
  name: 'oiwxgloi',
  private: false,
  request_count: 1 }

.requests ( binName, callback )

Get a list of the requests made to a bin.

paramtyperequireddefaultdescription
binNamestringyesBin name/ID to retrieve
callbackfunctionyesCallback function
requestbin.requests ('oiwxgloi', console.log);
[ { content_length: null,
    body: '',
    form_data: [],
    remote_addr: '1.2.3.4',
    method: 'GET',
    headers:
     { Host: 'requestb.in',
       Connection: 'keep-alive',
       Accept: '*/*',
       'User-Agent': 'curl/7.27.0' },
    content_type: null,
    time: 1358144300.182959,
    query_string: '',
    path: '/oiwxgloi',
    id: 'sz42lo' } ]

.request ( binName, requestId, callback )

Get details about one request made to a bin.

paramtyperequireddefaultdescription
binNamestringyesBin name/ID to retrieve
requestIdstringyesRequest ID to retrieve
callbackfunctionyesCallback function
requestbin.request ('oiwxgloi', 'sz42lo', console.log);

The output is much like the previous example, but it's an object instead of array.

Unlicense

This is free and unencumbered software released into the public domain.

Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means.

In jurisdictions that recognize copyright laws, the author or authors of this software dedicate any and all copyright interest in the software to the public domain. We make this dedication for the benefit of the public at large and to the detriment of our heirs and successors. We intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights to this software under copyright law.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

For more information, please refer to http://unlicense.org

Author

Franklin van de Meent

Buy me a coffee

1.5.1

7 years ago

1.5.0

8 years ago

1.4.0

8 years ago

1.3.0

9 years ago

1.2.0

9 years ago

1.1.1

11 years ago

1.1.0

11 years ago

1.0.0

11 years ago