How to use http request headers in Got?

12.7k Views Asked by At

I have a very simple goal in mind. I want to make an API request from an API known as Zomato from my node.js server application. I'm using an https request framework known as Got, which is supposed to be a lighter version of request API.

var got = require('got');
var httpheaders = {
    'Accept': 'application/json',
    'user-key': '**********************',
    'json': true
}

got('https://developers.zomato.com/api/v2.1/geocode?lat=35&lon=34', {httpheaders}).then(response => {
    console.log('We got something');

    console.log(response.body);

}).catch(error => {
    console.log('We got nothing');
});

When I attempt to run this I catch an error and print, "We got nothing". I don't seem to know how to actually include http request headers, but I can't figure out what the proper syntax would be based off the documentation. Any help would be appreciated. Thanks!

1

There are 1 best solutions below

0
On

https://github.com/sindresorhus/got/blob/HEAD/documentation/2-options.md

You could use options, like this

import got from 'got';
const options = {
    headers: {
        foo: 'bar'
    }
};
const data = await got(url, options).json();