Skip to content

Latest commit

 

History

History
19 lines (19 loc) · 754 Bytes

README.md

File metadata and controls

19 lines (19 loc) · 754 Bytes

SSJS fetch

Simplified interface for Script.Util.HttpRequest.

Installation

npm install ssjs-fetch

Interface

Get: function (url, headers = [], continueOnError = true, retries = 0, emptyContentHandling = 0) 
Post: function (url, data, headers = [], continueOnError = true, retries = 0, emptyContentHandling = 0) 
Put: function(url, data, headers = [], continueOnError = true, retries = 0, emptyContentHandling = 0) 
Patch: function(url, data, headers = [], continueOnError = true, retries = 0, emptyContentHandling = 0) 
Delete: function (url, headers = [], continueOnError = true, retries = 0, emptyContentHandling = 0) 

Example

import $ from 'ssjs-fetch';
const result = $.Post('https://httpbin.org/post', {
    foo: 'bar'
});