步骤
范例
范例中pages.create()的方法及 your_notion_secret & your_database_id 在上一篇文章中有说明,其余的code把子元件的type设定为嵌入连结 -> url设定为google首页 -> 把子元件append到新页面:
from notion_client import Client
# Initialize Notion client with your integration token
notion = Client(auth="your_notion_secret")
# Create a new page
new_page = notion.pages.create(
parent={"database_id": "your_database_id"},
properties={
"title": {
"title": [
{
"text": {
"content": "Your Page Title"
}
}
]
}
}
)
page_id = new_page[\'id\'] #储存新页面的id
# Append a child block to the new page
notion.blocks.children.append(
block_id=page_id,
children=[ #要append在新页面中的元件
{
"object": "block",
"type": "embed",
"embed": {
"url": "https://www.google.com"
}
}
]
)
print(f"Page created with ID: {page_id}")