HomeAboutMeBlogGuest
© 2025 Sejin Cha. All rights reserved.
Built with Next.js, deployed on Vercel
📌
hkob's Notion
/
🆒
Notion AI test
/
Ruby で NotionRubyMapping を使って、page を作成するコードを書いてください。

Ruby で NotionRubyMapping を使って、page を作成するコードを書いてください。

コマンド
Help me write
require 'notion_ruby_mapping' # Connect to Notion NotionRubyMapping.configure do |config| config.token = 'your-token-here' end # Create a new page page = NotionRubyMapping::Page.create( title: 'Hello, world!', body: 'This is a test page.' ) # Save the page to Notion page.save