Appearance
库
查看页面。
node page.mjsimport { Client } from '@notionhq/client';
const TOKEN = 'ntn_123456';
const ID = '1234';
const notion = new Client({ auth: TOKEN });
(async () => {
const data = await notion.pages.retrieve({
page_id: ID
});
console.log(data);
})();