-
Notifications
You must be signed in to change notification settings - Fork 3
/
create-page-example.go
87 lines (79 loc) · 1.8 KB
/
create-page-example.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
package main
import (
"encoding/json"
"flag"
"fmt"
notion "github.com/oyekanmiayo/go-notion/notion/version1"
"log"
"net/http"
"os"
)
func main() {
flags := flag.NewFlagSet("notion-databases-example", flag.ExitOnError)
accessToken := flags.String("access-token", "", "Notion API Key / Notion Access Token")
pageID := flags.String("page-id", "", "Page ID")
databaseID := flags.String("db-id", "", "DB ID")
err := flags.Parse(os.Args[1:])
if err != nil {
log.Fatalf("error: %v", err)
}
client := notion.NewClient(http.DefaultClient, *accessToken)
// Create a page in a database
// Sample command: go run create-page-example.go --access-token=<token> --page-id=<page-id> --db-id=<db-id>
params := ¬ion.CreatePageBodyParams{
Parent: ¬ion.DatabaseParent{
DatabaseID: *databaseID,
},
Properties: map[string]notion.PageProperty{
"Name": {
Title: []notion.RichText{
{
Text: ¬ion.Text{
Content: "Creating Page Sample",
},
},
},
},
"Tags": {
MultiSelect: []notion.MultiSelectPropertyOpts{
{
Name: "Tag1",
},
{
Name: "Tag3",
},
},
},
"Recommended": {
Checkbox: true,
},
},
}
resp, _, err := client.Pages.CreatePage(params)
if err != nil {
fmt.Printf("Err %v\n", err)
}
jsonBody, _ := json.Marshal(resp)
fmt.Println(string(jsonBody))
// Create a page within a page
params = ¬ion.CreatePageBodyParams{
Parent: ¬ion.PageParent{
PageID: *pageID,
},
Properties: ¬ion.PageProperty{
Title: []notion.RichText{
{
Text: ¬ion.Text{
Content: "Creating Page Within A Page Sample",
},
},
},
},
}
resp, _, err = client.Pages.CreatePage(params)
if err != nil {
fmt.Printf("Err %v\n", err)
}
jsonBody, _ = json.Marshal(resp)
fmt.Println(string(jsonBody))
}