Notion APIを叩いてみたかったから、ちょっと試した感じです。
また、下記アドベントカレンダー4日目の記事です。
構成はこんな感じ
フォームで送信した内容がスプレッドシートに自動的に追加されていきますので、トリガー設定をしてGASを発動。その中でNotion APIを叩く流れです。
Notion Developersにてインテグレーションを作成
https://www.notion.so/my-integrations より新規インテグレーションを作成
トークンをメモ
GASで指定します。
Notionでページを作成
事前にページは作成した状態で、APIでブロックをどんどん追加していくイメージです。
主に以下を参照しました。
- Append block children
- Block object
GASの中身
トークンなど秘匿性のあるものは GAS の PropertiesService.getScriptProperties
が使えますのでコードに直書きしない方が良いですね。 NOTION_BOOK_PAGE
とありますが、NotionのブロックIDですね。。
トリガーは、「イベントの種類」を「フォーム送信時」に設定することで、フォーム送信があるたびに所定の関数を実行できます。
また、パラメーターが渡されてくるので、 event.range.getRow();
とすることで、フォーム送信で追加されたスプレッドシートの行番号を取得できます。
const NOTION_TOKEN = PropertiesService.getScriptProperties().getProperty("NOTION_TOKEN")
const NOTION_BOOK_PAGE = PropertiesService.getScriptProperties().getProperty("NOTION_BOOK_PAGE")
const SpreadSheet = SpreadsheetApp.getActiveSpreadsheet();
const Sheet = {
Books: SpreadSheet.getSheetByName("books")
};
const ClmIndex = {
RegisterDateTime: 0,
Mail: 1,
Title: 2,
Link: 3,
Rank: 4,
Comment: 5,
}
const ClmLast = ClmIndex.Comment + 1
/**
* フォーム送信時のハンドラ
*/
const acceptedForm = (event) => {
const registerDataRowId = event.range.getRow();
const orders = Sheet.Books.getRange(
registerDataRowId,
1,
1,
ClmLast
).getValues();
if (!orders || orders.length == 0) {
return;
}
addBookToNotion(orders[0])
}
const addBookToNotion = (order) => {
const now = Utilities.formatDate(new Date(), 'Asia/Tokyo', 'yyyy/MM/dd');
const object = {
"children": [
{
// 見出しにタイトル
"type": "heading_3",
"heading_3": {
"rich_text": [{
"type": "text",
"text": {
"content": `${order[ClmIndex.Title]}`,
"link": null
}
}],
"color": "default",
"is_toggleable": false
}
},
{
// リンクとキャプション
"object": "block",
"type": "bookmark",
"bookmark": {
"url": `${order[ClmIndex.Link]}`,
"caption": [
{
"type": "text",
"text": {
"content": `${order[ClmIndex.Comment]} ${now}`
}
}
]
}
},
{
// ブランク行
"type": "paragraph",
"paragraph": {
"rich_text": [{
"type": "text",
"text": {
"content": ""
}
}]
}
}
]
}
const options = {
method: 'PATCH',
headers: {
'Content-Type': 'application/json',
'Notion-Version': '2022-06-28',
'Authorization': `Bearer ${NOTION_TOKEN}`
},
payload: JSON.stringify(object)
};
UrlFetchApp.fetch(`https://api.notion.com/v1/blocks/${NOTION_BOOK_PAGE}/children`, options)
}
ということで
Notionも気になってたのですがあまり触ってなかったので良い機会を頂けました!
GASも入口としては触りやすいので、連携するとアイデア次第で色々できそうな感じですね。