代码拉取完成,页面将自动刷新
/*
* @Author: your name
* @Date: 2021-08-19 13:45:46
* @LastEditTime: 2021-08-19 14:37:23
* @LastEditors: Please set LastEditors
* @Description: In User Settings Edit
* @FilePath: /notion/index.js
*/
// import { Client } from "@notionhq/client"
var { Client } = require('@notionhq/client')
const notion = new Client({ auth: process.env.NOTION_KEY })
const databaseId = process.env.NOTION_DATABASE_ID
async function addItem(text) {
try {
const response = await notion.pages.create({
parent: { database_id: databaseId },
properties: {
title: {
title:[
{
"text": {
"content": text
}
}
]
}
},
})
console.log(response)
console.log("Success! Entry added.")
} catch (error) {
console.error(error.body)
}
}
addItem("Yurts in Big Sur, California")
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。