Skip to content

Instantly share code, notes, and snippets.

@wktq
wktq / notify.js
Created August 26, 2021 01:20
Notionのkanbanから日報をSlackに自動投稿
const { Client } = require("@notionhq/client");
const { WebClient } = require("@slack/web-api");
const notion = new Client({
auth: "secret_YOUR_NOTION_TOKEN_HERE",
});
const completedTaskTitles = [];
const todoTaskTitles = [];