Skip to content

Creating a NotionClient

David De Bels edited this page May 23, 2021 · 3 revisions

Creating a NotionClient is simple, just pass an integration token and you're good to go.

Creating a NotionClient Object

Swift:

let client = NotionClient.init(token: "NOTION_INTEGRATION_TOKEN")

Objective-C:

NotionClient *client = [NotionClient clientWithToken:@"NOTION_INTEGRATION_TOKEN"];

Clone this wiki locally