需要Node js代码片段才能从Assembla获取数据

时间:2018-08-27 09:26:12

标签: node.js rest assembla

尝试使用node js rest API调用从Assembla获取数据。 我不确定如何使用Bearer令牌进行身份验证并获取JSON输出。 有什么方法可以使用HTTP请求并按预期获取输出。 请帮忙。

1 个答案:

答案 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
    });