如何在Got中使用http请求头?

问题描述 投票:0回答:1

我心中有一个非常简单的目标。我想从我的 Node.js 服务器应用程序中通过名为 Zomato 的 API 发出 API 请求。我正在使用一个名为 Got 的 https 请求框架,它应该是请求 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');
});

当我尝试运行此程序时,我发现一个错误并打印“我们什么也没得到”。我似乎不知道如何实际包含 http 请求标头,但我无法根据文档找出正确的语法。任何帮助,将不胜感激。谢谢!

javascript node.js https zomato-api
1个回答
0
投票

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

你可以使用选项,像这样

import got from 'got';
const options = {
    headers: {
        foo: 'bar'
    }
};
const data = await got(url, options).json();
© www.soinside.com 2019 - 2024. All rights reserved.