到目前为止,我已在终端中使用此命令向readme.io api发出GET请求
curl https://dash.readme.io/api/v1 -X GET -u API_KEY:
PASSWORD VALUE为空,curl命令在终端中正常工作。
如何使用node.js执行此操作 我有这个。
const options = {
method: 'GET',
headers: {
'Authorization': 'Basic API_KEY:'
}
};
fetch('https://dash.readme.io/api/v1', options)
.then(res => res.text())
.then(body => console.log(body))
.catch(err => console.log('ERROR', err))
但它返回:
{"error":"Unauthorized","errors":null}
你能否告诉我,我错误的是哪一部分?
提前致谢。