0
您好我是使用節點和rest API調用的新手。node js調用confluence API返回null
我發現這個節點JS的匯合的API包裝:https://github.com/johnpduane/confluence-api#Confluence+getSpace
var Confluence = require("confluence-api");
var config = {
username: "<user>",
password: "<pw>",
baseUrl: "https://<page>.atlassian.net",
};
var confluence = new Confluence(config);
confluence.getSpace(<space name>, function(err, data) {
// do something interesting with data; for instance,
// data.results[0].body.storage.value contains the stored markup for the first
// page found in space 'space-name' matching page title 'page-title'
console.log(data)
console.log(err)
console.log(data.results[0].id);
});
這樣做的回報是零。我不確定這是什麼意思 - 我沒有連接到我的匯合頁面?我誤解了如何使用API調用?
你在哪裏運行此代碼?我的本地機器上有 –
。 – Dennis