我是Meteor.js的新手,希望让我的web应用程序与Dropbox Core API一起工作。我无法使用Meteor.js 中的HTTP包进行API调用
我如何在Meteor中打电话,这与下面的Curl电话类似:
curl https://api.dropbox.com/1/account/info -H "Authorization: Bearer <access token>"
我想获得目录中的文件列表,但现在我被Authentical Token卡住了。
您可以使用您提到的的HTTP包
添加
meteor add http
然后使用它(服务器端)。这应该会产生上面curl
请求所给出的结果。
var result = HTTP.get("https://api.dropbox.com/1/account/info", {
headers: {
Authorization: "Bearer <access token>"
}
});
console.log(result.content)
console.log(result.data) //<< JSON form (if api reports application/json as the content-type header