尝试使用node js rest API调用从Assembla获取数据。 我不确定如何使用Bearer令牌进行身份验证并获取JSON输出。 有什么方法可以使用HTTP请求并按预期获取输出。 请帮忙。
答案 0 :(得分:0)
Put your access token in the request to authenticate api and you will get the json data
request({
method: 'GET',
uri: 'https://api.assembla.com/v1/spaces',
auth: {
bearer: access_token
}
}, function (error, response, body) {
//this contains a json object
});