How to provide basic HTTP authentication in Zapier code?

438 Views Asked by At

Documentation provides simple examples with fetch API:

fetch('http://example.com/')
  .then(function(res) {
    return res.text();
  })
  .then(function(body) {
    var output = {id: 1234, rawHTML: body};
    callback(null, output);
  })
  .catch(callback);

to query data.

How can I add headers or pass post data in those structures?

1

There are 1 best solutions below

0
On

One can use standard Fetch API possibilities (second parameter is options for request where you can pass headers, HTTP method to be used etc.), e.g.

var myInit = { method: 'GET',
               headers: {
                authentication: 'Basic lkjbwkejbf...'
               },
               mode: 'cors',
               cache: 'default' };

fetch('flowers.jpg', myInit).then(function(response) {
  return response.blob();
}).then(function(myBlob) {
  var objectURL = URL.createObjectURL(myBlob);
  myImage.src = objectURL;
});

like described here