notionrb 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.devcontainer/Dockerfile +5 -0
- data/.devcontainer/boot.sh +1 -0
- data/.devcontainer/devcontainer.json +30 -0
- data/.github/workflows/ci.yml +15 -0
- data/.github/workflows/rubocop.yml +17 -0
- data/.gitignore +7 -0
- data/.rspec +2 -0
- data/.rubocop.yml +55 -0
- data/.rubocop_todo.yml +86 -0
- data/CHANGELOG.md +144 -0
- data/CODE_OF_CONDUCT.md +128 -0
- data/CONTRIBUTING.md +51 -0
- data/Gemfile +4 -0
- data/Gemfile.lock +95 -0
- data/LICENSE.md +21 -0
- data/README.md +677 -0
- data/Rakefile +18 -0
- data/bin/console +31 -0
- data/lib/notion/api/endpoints/blocks.rb +100 -0
- data/lib/notion/api/endpoints/comments.rb +61 -0
- data/lib/notion/api/endpoints/data_sources.rb +102 -0
- data/lib/notion/api/endpoints/databases.rb +134 -0
- data/lib/notion/api/endpoints/pages.rb +95 -0
- data/lib/notion/api/endpoints/search.rb +41 -0
- data/lib/notion/api/endpoints/users.rb +48 -0
- data/lib/notion/api/endpoints.rb +23 -0
- data/lib/notion/api/error.rb +6 -0
- data/lib/notion/api/errors/internal_error.rb +12 -0
- data/lib/notion/api/errors/notion_error.rb +15 -0
- data/lib/notion/api/errors/too_many_requests.rb +15 -0
- data/lib/notion/api/errors.rb +23 -0
- data/lib/notion/client.rb +28 -0
- data/lib/notion/config.rb +54 -0
- data/lib/notion/faraday/connection.rb +37 -0
- data/lib/notion/faraday/request.rb +45 -0
- data/lib/notion/faraday/response/raise_error.rb +31 -0
- data/lib/notion/faraday/response/wrap_error.rb +22 -0
- data/lib/notion/logger.rb +14 -0
- data/lib/notion/messages/message.rb +17 -0
- data/lib/notion/pagination/cursor.rb +53 -0
- data/lib/notion/version.rb +5 -0
- data/lib/notion-ruby-client.rb +28 -0
- data/lib/notion.rb +2 -0
- data/lib/notion_ruby_client.rb +2 -0
- data/notionrb.gemspec +31 -0
- data/spec/fixtures/notion/block.yml +146 -0
- data/spec/fixtures/notion/block_append_children.yml +149 -0
- data/spec/fixtures/notion/block_children.yml +152 -0
- data/spec/fixtures/notion/create_data_source.yml +29 -0
- data/spec/fixtures/notion/create_database.yml +149 -0
- data/spec/fixtures/notion/create_discussion_comment.yml +110 -0
- data/spec/fixtures/notion/create_page.yml +152 -0
- data/spec/fixtures/notion/create_page_comment.yml +110 -0
- data/spec/fixtures/notion/create_page_with_data_source.yml +29 -0
- data/spec/fixtures/notion/create_page_with_parent_page.yml +128 -0
- data/spec/fixtures/notion/data_source.yml +27 -0
- data/spec/fixtures/notion/data_source_query.yml +29 -0
- data/spec/fixtures/notion/database.yml +150 -0
- data/spec/fixtures/notion/database_query.yml +154 -0
- data/spec/fixtures/notion/delete_block.yml +145 -0
- data/spec/fixtures/notion/page.yml +150 -0
- data/spec/fixtures/notion/page_property_item.yml +143 -0
- data/spec/fixtures/notion/paginated_block_children.yml +575 -0
- data/spec/fixtures/notion/paginated_data_source_query.yml +29 -0
- data/spec/fixtures/notion/paginated_database_query.yml +152 -0
- data/spec/fixtures/notion/paginated_databases_list.yml +150 -0
- data/spec/fixtures/notion/paginated_search.yml +301 -0
- data/spec/fixtures/notion/paginated_users_list.yml +146 -0
- data/spec/fixtures/notion/retrieve_comments.yml +106 -0
- data/spec/fixtures/notion/search.yml +160 -0
- data/spec/fixtures/notion/search_with_query.yml +152 -0
- data/spec/fixtures/notion/update_block.yml +148 -0
- data/spec/fixtures/notion/update_data_source.yml +29 -0
- data/spec/fixtures/notion/update_database.yml +152 -0
- data/spec/fixtures/notion/update_page.yml +152 -0
- data/spec/fixtures/notion/users.yml +145 -0
- data/spec/fixtures/notion/users_list.yml +146 -0
- data/spec/fixtures/notion/users_me.yml +144 -0
- data/spec/notion/api/endpoints/blocks_spec.rb +72 -0
- data/spec/notion/api/endpoints/comments_spec.rb +49 -0
- data/spec/notion/api/endpoints/data_sources_spec.rb +61 -0
- data/spec/notion/api/endpoints/databases_spec.rb +70 -0
- data/spec/notion/api/endpoints/pages_spec.rb +127 -0
- data/spec/notion/api/endpoints/search_spec.rb +26 -0
- data/spec/notion/api/endpoints/users_spec.rb +31 -0
- data/spec/notion/config_spec.rb +16 -0
- data/spec/notion/pagination/cursor_spec.rb +126 -0
- data/spec/notion/version_spec.rb +8 -0
- data/spec/spec_helper.rb +22 -0
- data/spec/support/token.rb +10 -0
- data/spec/support/vcr.rb +16 -0
- metadata +358 -0
|
@@ -0,0 +1,575 @@
|
|
|
1
|
+
---
|
|
2
|
+
http_interactions:
|
|
3
|
+
- request:
|
|
4
|
+
method: get
|
|
5
|
+
uri: https://api.notion.com/v1/blocks/32af3324-ba02-4516-ae88-5728a4d569f4/children?page_size=1
|
|
6
|
+
body:
|
|
7
|
+
encoding: US-ASCII
|
|
8
|
+
string: ''
|
|
9
|
+
headers:
|
|
10
|
+
Accept:
|
|
11
|
+
- application/json; charset=utf-8
|
|
12
|
+
User-Agent:
|
|
13
|
+
- Notion Ruby Client/0.0.8
|
|
14
|
+
Authorization:
|
|
15
|
+
- Bearer <NOTION_API_TOKEN>
|
|
16
|
+
Notion-Version:
|
|
17
|
+
- '2022-02-22'
|
|
18
|
+
Accept-Encoding:
|
|
19
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
|
20
|
+
response:
|
|
21
|
+
status:
|
|
22
|
+
code: 200
|
|
23
|
+
message: OK
|
|
24
|
+
headers:
|
|
25
|
+
Date:
|
|
26
|
+
- Sun, 29 Aug 2021 17:45:03 GMT
|
|
27
|
+
Content-Type:
|
|
28
|
+
- application/json; charset=utf-8
|
|
29
|
+
Transfer-Encoding:
|
|
30
|
+
- chunked
|
|
31
|
+
Connection:
|
|
32
|
+
- keep-alive
|
|
33
|
+
X-Dns-Prefetch-Control:
|
|
34
|
+
- 'off'
|
|
35
|
+
X-Frame-Options:
|
|
36
|
+
- SAMEORIGIN
|
|
37
|
+
Strict-Transport-Security:
|
|
38
|
+
- max-age=5184000; includeSubDomains
|
|
39
|
+
X-Download-Options:
|
|
40
|
+
- noopen
|
|
41
|
+
X-Content-Type-Options:
|
|
42
|
+
- nosniff
|
|
43
|
+
X-Xss-Protection:
|
|
44
|
+
- 1; mode=block
|
|
45
|
+
Referrer-Policy:
|
|
46
|
+
- same-origin
|
|
47
|
+
Content-Security-Policy:
|
|
48
|
+
- 'script-src ''self'' ''unsafe-inline'' ''unsafe-eval'' https://gist.github.com
|
|
49
|
+
https://apis.google.com https://api.amplitude.com https://widget.intercom.io
|
|
50
|
+
https://js.intercomcdn.com https://logs-01.loggly.com https://cdn.segment.com
|
|
51
|
+
https://analytics.pgncs.notion.so https://o324374.ingest.sentry.io https://checkout.stripe.com
|
|
52
|
+
https://js.stripe.com https://embed.typeform.com https://admin.typeform.com
|
|
53
|
+
https://public.profitwell.com js.sentry-cdn.com https://js.chilipiper.com
|
|
54
|
+
https://platform.twitter.com https://cdn.syndication.twimg.com https://www.googletagmanager.com
|
|
55
|
+
https://x.clearbitjs.com https://client-registry.mutinycdn.com https://client.mutinycdn.com/
|
|
56
|
+
https://user-data.mutinycdn.com; connect-src ''self'' https://msgstore.www.notion.so
|
|
57
|
+
wss://msgstore.www.notion.so ws://localhost:* https://notion-emojis.s3-us-west-2.amazonaws.com
|
|
58
|
+
https://s3-us-west-2.amazonaws.com https://s3.us-west-2.amazonaws.com https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
|
|
59
|
+
https: http: https://api.amplitude.com https://api.embed.ly https://js.intercomcdn.com
|
|
60
|
+
https://api-iam.intercom.io wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
|
|
61
|
+
https://cdn.segment.com https://api.segment.io https://analytics.pgncs.notion.so
|
|
62
|
+
https://api.pgncs.notion.so https://o324374.ingest.sentry.io https://checkout.stripe.com
|
|
63
|
+
https://js.stripe.com https://cdn.contentful.com https://preview.contentful.com
|
|
64
|
+
https://images.ctfassets.net https://www2.profitwell.com https://tracking.chilipiper.com
|
|
65
|
+
https://api.chilipiper.com https://api.unsplash.com https://boards-api.greenhouse.io
|
|
66
|
+
https://user-data.mutinycdn.com https://api-v2.mutinyhq.io https://api.statuspage.io
|
|
67
|
+
https://pgncd.notion.so; font-src ''self'' data: https://cdnjs.cloudflare.com
|
|
68
|
+
https://js.intercomcdn.com; img-src ''self'' data: blob: https: https://platform.twitter.com
|
|
69
|
+
https://syndication.twitter.com https://pbs.twimg.com https://ton.twimg.com
|
|
70
|
+
www.googletagmanager.com; style-src ''self'' ''unsafe-inline'' https://cdnjs.cloudflare.com
|
|
71
|
+
https://github.githubassets.com https://js.chilipiper.com https://platform.twitter.com
|
|
72
|
+
https://ton.twimg.com; frame-src https: http:; media-src https: http:'
|
|
73
|
+
X-Content-Security-Policy:
|
|
74
|
+
- 'script-src ''self'' ''unsafe-inline'' ''unsafe-eval'' https://gist.github.com
|
|
75
|
+
https://apis.google.com https://api.amplitude.com https://widget.intercom.io
|
|
76
|
+
https://js.intercomcdn.com https://logs-01.loggly.com https://cdn.segment.com
|
|
77
|
+
https://analytics.pgncs.notion.so https://o324374.ingest.sentry.io https://checkout.stripe.com
|
|
78
|
+
https://js.stripe.com https://embed.typeform.com https://admin.typeform.com
|
|
79
|
+
https://public.profitwell.com js.sentry-cdn.com https://js.chilipiper.com
|
|
80
|
+
https://platform.twitter.com https://cdn.syndication.twimg.com https://www.googletagmanager.com
|
|
81
|
+
https://x.clearbitjs.com https://client-registry.mutinycdn.com https://client.mutinycdn.com/
|
|
82
|
+
https://user-data.mutinycdn.com; connect-src ''self'' https://msgstore.www.notion.so
|
|
83
|
+
wss://msgstore.www.notion.so ws://localhost:* https://notion-emojis.s3-us-west-2.amazonaws.com
|
|
84
|
+
https://s3-us-west-2.amazonaws.com https://s3.us-west-2.amazonaws.com https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
|
|
85
|
+
https: http: https://api.amplitude.com https://api.embed.ly https://js.intercomcdn.com
|
|
86
|
+
https://api-iam.intercom.io wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
|
|
87
|
+
https://cdn.segment.com https://api.segment.io https://analytics.pgncs.notion.so
|
|
88
|
+
https://api.pgncs.notion.so https://o324374.ingest.sentry.io https://checkout.stripe.com
|
|
89
|
+
https://js.stripe.com https://cdn.contentful.com https://preview.contentful.com
|
|
90
|
+
https://images.ctfassets.net https://www2.profitwell.com https://tracking.chilipiper.com
|
|
91
|
+
https://api.chilipiper.com https://api.unsplash.com https://boards-api.greenhouse.io
|
|
92
|
+
https://user-data.mutinycdn.com https://api-v2.mutinyhq.io https://api.statuspage.io
|
|
93
|
+
https://pgncd.notion.so; font-src ''self'' data: https://cdnjs.cloudflare.com
|
|
94
|
+
https://js.intercomcdn.com; img-src ''self'' data: blob: https: https://platform.twitter.com
|
|
95
|
+
https://syndication.twitter.com https://pbs.twimg.com https://ton.twimg.com
|
|
96
|
+
www.googletagmanager.com; style-src ''self'' ''unsafe-inline'' https://cdnjs.cloudflare.com
|
|
97
|
+
https://github.githubassets.com https://js.chilipiper.com https://platform.twitter.com
|
|
98
|
+
https://ton.twimg.com; frame-src https: http:; media-src https: http:'
|
|
99
|
+
X-Webkit-Csp:
|
|
100
|
+
- 'script-src ''self'' ''unsafe-inline'' ''unsafe-eval'' https://gist.github.com
|
|
101
|
+
https://apis.google.com https://api.amplitude.com https://widget.intercom.io
|
|
102
|
+
https://js.intercomcdn.com https://logs-01.loggly.com https://cdn.segment.com
|
|
103
|
+
https://analytics.pgncs.notion.so https://o324374.ingest.sentry.io https://checkout.stripe.com
|
|
104
|
+
https://js.stripe.com https://embed.typeform.com https://admin.typeform.com
|
|
105
|
+
https://public.profitwell.com js.sentry-cdn.com https://js.chilipiper.com
|
|
106
|
+
https://platform.twitter.com https://cdn.syndication.twimg.com https://www.googletagmanager.com
|
|
107
|
+
https://x.clearbitjs.com https://client-registry.mutinycdn.com https://client.mutinycdn.com/
|
|
108
|
+
https://user-data.mutinycdn.com; connect-src ''self'' https://msgstore.www.notion.so
|
|
109
|
+
wss://msgstore.www.notion.so ws://localhost:* https://notion-emojis.s3-us-west-2.amazonaws.com
|
|
110
|
+
https://s3-us-west-2.amazonaws.com https://s3.us-west-2.amazonaws.com https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
|
|
111
|
+
https: http: https://api.amplitude.com https://api.embed.ly https://js.intercomcdn.com
|
|
112
|
+
https://api-iam.intercom.io wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
|
|
113
|
+
https://cdn.segment.com https://api.segment.io https://analytics.pgncs.notion.so
|
|
114
|
+
https://api.pgncs.notion.so https://o324374.ingest.sentry.io https://checkout.stripe.com
|
|
115
|
+
https://js.stripe.com https://cdn.contentful.com https://preview.contentful.com
|
|
116
|
+
https://images.ctfassets.net https://www2.profitwell.com https://tracking.chilipiper.com
|
|
117
|
+
https://api.chilipiper.com https://api.unsplash.com https://boards-api.greenhouse.io
|
|
118
|
+
https://user-data.mutinycdn.com https://api-v2.mutinyhq.io https://api.statuspage.io
|
|
119
|
+
https://pgncd.notion.so; font-src ''self'' data: https://cdnjs.cloudflare.com
|
|
120
|
+
https://js.intercomcdn.com; img-src ''self'' data: blob: https: https://platform.twitter.com
|
|
121
|
+
https://syndication.twitter.com https://pbs.twimg.com https://ton.twimg.com
|
|
122
|
+
www.googletagmanager.com; style-src ''self'' ''unsafe-inline'' https://cdnjs.cloudflare.com
|
|
123
|
+
https://github.githubassets.com https://js.chilipiper.com https://platform.twitter.com
|
|
124
|
+
https://ton.twimg.com; frame-src https: http:; media-src https: http:'
|
|
125
|
+
Set-Cookie:
|
|
126
|
+
- notion_browser_id=daaae12a-cce1-4098-9c7d-7e88373c9522; Domain=www.notion.so;
|
|
127
|
+
Path=/; Expires=Wed, 07 May 2053 19:31:43 GMT; Secure
|
|
128
|
+
Etag:
|
|
129
|
+
- W/"217-BsYX5QLp9UhoMNTePCXky8G5jqQ"
|
|
130
|
+
Vary:
|
|
131
|
+
- Accept-Encoding
|
|
132
|
+
Cf-Cache-Status:
|
|
133
|
+
- DYNAMIC
|
|
134
|
+
Expect-Ct:
|
|
135
|
+
- max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
|
|
136
|
+
Server:
|
|
137
|
+
- cloudflare
|
|
138
|
+
Cf-Ray:
|
|
139
|
+
- 686797410c5f3b6d-CDG
|
|
140
|
+
body:
|
|
141
|
+
encoding: UTF-8
|
|
142
|
+
string: '{"object":"list","results":[{"object":"block","id":"c183b81c-2973-41c1-867b-7faa0180403d","created_time":"2021-05-01T17:13:00.000Z","last_edited_time":"2021-05-01T17:13:00.000Z","has_children":false,"type":"paragraph","paragraph":{"rich_text":[{"type":"text","text":{"content":"The
|
|
143
|
+
first child","link":null},"annotations":{"bold":false,"italic":false,"strikethrough":false,"underline":false,"code":false,"color":"default"},"plain_text":"The
|
|
144
|
+
first child","href":null}]}}],"next_cursor":"51ab7653-230b-4332-89e5-4ca2b10e695b","has_more":true}'
|
|
145
|
+
recorded_at: Sun, 29 Aug 2021 17:45:03 GMT
|
|
146
|
+
- request:
|
|
147
|
+
method: get
|
|
148
|
+
uri: https://api.notion.com/v1/blocks/32af3324-ba02-4516-ae88-5728a4d569f4/children?page_size=1&start_cursor=51ab7653-230b-4332-89e5-4ca2b10e695b
|
|
149
|
+
body:
|
|
150
|
+
encoding: US-ASCII
|
|
151
|
+
string: ''
|
|
152
|
+
headers:
|
|
153
|
+
Accept:
|
|
154
|
+
- application/json; charset=utf-8
|
|
155
|
+
User-Agent:
|
|
156
|
+
- Notion Ruby Client/0.0.8
|
|
157
|
+
Authorization:
|
|
158
|
+
- Bearer <NOTION_API_TOKEN>
|
|
159
|
+
Notion-Version:
|
|
160
|
+
- '2022-02-22'
|
|
161
|
+
Accept-Encoding:
|
|
162
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
|
163
|
+
response:
|
|
164
|
+
status:
|
|
165
|
+
code: 200
|
|
166
|
+
message: OK
|
|
167
|
+
headers:
|
|
168
|
+
Date:
|
|
169
|
+
- Sun, 29 Aug 2021 17:45:04 GMT
|
|
170
|
+
Content-Type:
|
|
171
|
+
- application/json; charset=utf-8
|
|
172
|
+
Transfer-Encoding:
|
|
173
|
+
- chunked
|
|
174
|
+
Connection:
|
|
175
|
+
- keep-alive
|
|
176
|
+
X-Dns-Prefetch-Control:
|
|
177
|
+
- 'off'
|
|
178
|
+
X-Frame-Options:
|
|
179
|
+
- SAMEORIGIN
|
|
180
|
+
Strict-Transport-Security:
|
|
181
|
+
- max-age=5184000; includeSubDomains
|
|
182
|
+
X-Download-Options:
|
|
183
|
+
- noopen
|
|
184
|
+
X-Content-Type-Options:
|
|
185
|
+
- nosniff
|
|
186
|
+
X-Xss-Protection:
|
|
187
|
+
- 1; mode=block
|
|
188
|
+
Referrer-Policy:
|
|
189
|
+
- same-origin
|
|
190
|
+
Content-Security-Policy:
|
|
191
|
+
- 'script-src ''self'' ''unsafe-inline'' ''unsafe-eval'' https://gist.github.com
|
|
192
|
+
https://apis.google.com https://api.amplitude.com https://widget.intercom.io
|
|
193
|
+
https://js.intercomcdn.com https://logs-01.loggly.com https://cdn.segment.com
|
|
194
|
+
https://analytics.pgncs.notion.so https://o324374.ingest.sentry.io https://checkout.stripe.com
|
|
195
|
+
https://js.stripe.com https://embed.typeform.com https://admin.typeform.com
|
|
196
|
+
https://public.profitwell.com js.sentry-cdn.com https://js.chilipiper.com
|
|
197
|
+
https://platform.twitter.com https://cdn.syndication.twimg.com https://www.googletagmanager.com
|
|
198
|
+
https://x.clearbitjs.com https://client-registry.mutinycdn.com https://client.mutinycdn.com/
|
|
199
|
+
https://user-data.mutinycdn.com; connect-src ''self'' https://msgstore.www.notion.so
|
|
200
|
+
wss://msgstore.www.notion.so ws://localhost:* https://notion-emojis.s3-us-west-2.amazonaws.com
|
|
201
|
+
https://s3-us-west-2.amazonaws.com https://s3.us-west-2.amazonaws.com https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
|
|
202
|
+
https: http: https://api.amplitude.com https://api.embed.ly https://js.intercomcdn.com
|
|
203
|
+
https://api-iam.intercom.io wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
|
|
204
|
+
https://cdn.segment.com https://api.segment.io https://analytics.pgncs.notion.so
|
|
205
|
+
https://api.pgncs.notion.so https://o324374.ingest.sentry.io https://checkout.stripe.com
|
|
206
|
+
https://js.stripe.com https://cdn.contentful.com https://preview.contentful.com
|
|
207
|
+
https://images.ctfassets.net https://www2.profitwell.com https://tracking.chilipiper.com
|
|
208
|
+
https://api.chilipiper.com https://api.unsplash.com https://boards-api.greenhouse.io
|
|
209
|
+
https://user-data.mutinycdn.com https://api-v2.mutinyhq.io https://api.statuspage.io
|
|
210
|
+
https://pgncd.notion.so; font-src ''self'' data: https://cdnjs.cloudflare.com
|
|
211
|
+
https://js.intercomcdn.com; img-src ''self'' data: blob: https: https://platform.twitter.com
|
|
212
|
+
https://syndication.twitter.com https://pbs.twimg.com https://ton.twimg.com
|
|
213
|
+
www.googletagmanager.com; style-src ''self'' ''unsafe-inline'' https://cdnjs.cloudflare.com
|
|
214
|
+
https://github.githubassets.com https://js.chilipiper.com https://platform.twitter.com
|
|
215
|
+
https://ton.twimg.com; frame-src https: http:; media-src https: http:'
|
|
216
|
+
X-Content-Security-Policy:
|
|
217
|
+
- 'script-src ''self'' ''unsafe-inline'' ''unsafe-eval'' https://gist.github.com
|
|
218
|
+
https://apis.google.com https://api.amplitude.com https://widget.intercom.io
|
|
219
|
+
https://js.intercomcdn.com https://logs-01.loggly.com https://cdn.segment.com
|
|
220
|
+
https://analytics.pgncs.notion.so https://o324374.ingest.sentry.io https://checkout.stripe.com
|
|
221
|
+
https://js.stripe.com https://embed.typeform.com https://admin.typeform.com
|
|
222
|
+
https://public.profitwell.com js.sentry-cdn.com https://js.chilipiper.com
|
|
223
|
+
https://platform.twitter.com https://cdn.syndication.twimg.com https://www.googletagmanager.com
|
|
224
|
+
https://x.clearbitjs.com https://client-registry.mutinycdn.com https://client.mutinycdn.com/
|
|
225
|
+
https://user-data.mutinycdn.com; connect-src ''self'' https://msgstore.www.notion.so
|
|
226
|
+
wss://msgstore.www.notion.so ws://localhost:* https://notion-emojis.s3-us-west-2.amazonaws.com
|
|
227
|
+
https://s3-us-west-2.amazonaws.com https://s3.us-west-2.amazonaws.com https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
|
|
228
|
+
https: http: https://api.amplitude.com https://api.embed.ly https://js.intercomcdn.com
|
|
229
|
+
https://api-iam.intercom.io wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
|
|
230
|
+
https://cdn.segment.com https://api.segment.io https://analytics.pgncs.notion.so
|
|
231
|
+
https://api.pgncs.notion.so https://o324374.ingest.sentry.io https://checkout.stripe.com
|
|
232
|
+
https://js.stripe.com https://cdn.contentful.com https://preview.contentful.com
|
|
233
|
+
https://images.ctfassets.net https://www2.profitwell.com https://tracking.chilipiper.com
|
|
234
|
+
https://api.chilipiper.com https://api.unsplash.com https://boards-api.greenhouse.io
|
|
235
|
+
https://user-data.mutinycdn.com https://api-v2.mutinyhq.io https://api.statuspage.io
|
|
236
|
+
https://pgncd.notion.so; font-src ''self'' data: https://cdnjs.cloudflare.com
|
|
237
|
+
https://js.intercomcdn.com; img-src ''self'' data: blob: https: https://platform.twitter.com
|
|
238
|
+
https://syndication.twitter.com https://pbs.twimg.com https://ton.twimg.com
|
|
239
|
+
www.googletagmanager.com; style-src ''self'' ''unsafe-inline'' https://cdnjs.cloudflare.com
|
|
240
|
+
https://github.githubassets.com https://js.chilipiper.com https://platform.twitter.com
|
|
241
|
+
https://ton.twimg.com; frame-src https: http:; media-src https: http:'
|
|
242
|
+
X-Webkit-Csp:
|
|
243
|
+
- 'script-src ''self'' ''unsafe-inline'' ''unsafe-eval'' https://gist.github.com
|
|
244
|
+
https://apis.google.com https://api.amplitude.com https://widget.intercom.io
|
|
245
|
+
https://js.intercomcdn.com https://logs-01.loggly.com https://cdn.segment.com
|
|
246
|
+
https://analytics.pgncs.notion.so https://o324374.ingest.sentry.io https://checkout.stripe.com
|
|
247
|
+
https://js.stripe.com https://embed.typeform.com https://admin.typeform.com
|
|
248
|
+
https://public.profitwell.com js.sentry-cdn.com https://js.chilipiper.com
|
|
249
|
+
https://platform.twitter.com https://cdn.syndication.twimg.com https://www.googletagmanager.com
|
|
250
|
+
https://x.clearbitjs.com https://client-registry.mutinycdn.com https://client.mutinycdn.com/
|
|
251
|
+
https://user-data.mutinycdn.com; connect-src ''self'' https://msgstore.www.notion.so
|
|
252
|
+
wss://msgstore.www.notion.so ws://localhost:* https://notion-emojis.s3-us-west-2.amazonaws.com
|
|
253
|
+
https://s3-us-west-2.amazonaws.com https://s3.us-west-2.amazonaws.com https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
|
|
254
|
+
https: http: https://api.amplitude.com https://api.embed.ly https://js.intercomcdn.com
|
|
255
|
+
https://api-iam.intercom.io wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
|
|
256
|
+
https://cdn.segment.com https://api.segment.io https://analytics.pgncs.notion.so
|
|
257
|
+
https://api.pgncs.notion.so https://o324374.ingest.sentry.io https://checkout.stripe.com
|
|
258
|
+
https://js.stripe.com https://cdn.contentful.com https://preview.contentful.com
|
|
259
|
+
https://images.ctfassets.net https://www2.profitwell.com https://tracking.chilipiper.com
|
|
260
|
+
https://api.chilipiper.com https://api.unsplash.com https://boards-api.greenhouse.io
|
|
261
|
+
https://user-data.mutinycdn.com https://api-v2.mutinyhq.io https://api.statuspage.io
|
|
262
|
+
https://pgncd.notion.so; font-src ''self'' data: https://cdnjs.cloudflare.com
|
|
263
|
+
https://js.intercomcdn.com; img-src ''self'' data: blob: https: https://platform.twitter.com
|
|
264
|
+
https://syndication.twitter.com https://pbs.twimg.com https://ton.twimg.com
|
|
265
|
+
www.googletagmanager.com; style-src ''self'' ''unsafe-inline'' https://cdnjs.cloudflare.com
|
|
266
|
+
https://github.githubassets.com https://js.chilipiper.com https://platform.twitter.com
|
|
267
|
+
https://ton.twimg.com; frame-src https: http:; media-src https: http:'
|
|
268
|
+
Set-Cookie:
|
|
269
|
+
- notion_browser_id=a1aec440-cb97-4ff6-bbb2-86f294de1b60; Domain=www.notion.so;
|
|
270
|
+
Path=/; Expires=Wed, 07 May 2053 19:31:44 GMT; Secure
|
|
271
|
+
Etag:
|
|
272
|
+
- W/"219-HaqBsxCAAIcZiz2bJbhHcTGlgzc"
|
|
273
|
+
Vary:
|
|
274
|
+
- Accept-Encoding
|
|
275
|
+
Cf-Cache-Status:
|
|
276
|
+
- DYNAMIC
|
|
277
|
+
Expect-Ct:
|
|
278
|
+
- max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
|
|
279
|
+
Server:
|
|
280
|
+
- cloudflare
|
|
281
|
+
Cf-Ray:
|
|
282
|
+
- 686797460d673b85-CDG
|
|
283
|
+
body:
|
|
284
|
+
encoding: UTF-8
|
|
285
|
+
string: '{"object":"list","results":[{"object":"block","id":"51ab7653-230b-4332-89e5-4ca2b10e695b","created_time":"2021-05-01T17:13:00.000Z","last_edited_time":"2021-05-01T17:13:00.000Z","has_children":false,"type":"paragraph","paragraph":{"rich_text":[{"type":"text","text":{"content":"The
|
|
286
|
+
second child","link":null},"annotations":{"bold":false,"italic":false,"strikethrough":false,"underline":false,"code":false,"color":"default"},"plain_text":"The
|
|
287
|
+
second child","href":null}]}}],"next_cursor":"722ec5e1-f620-4860-a5fd-6de0430db4a8","has_more":true}'
|
|
288
|
+
recorded_at: Sun, 29 Aug 2021 17:45:04 GMT
|
|
289
|
+
- request:
|
|
290
|
+
method: get
|
|
291
|
+
uri: https://api.notion.com/v1/blocks/32af3324-ba02-4516-ae88-5728a4d569f4/children?page_size=1&start_cursor=722ec5e1-f620-4860-a5fd-6de0430db4a8
|
|
292
|
+
body:
|
|
293
|
+
encoding: US-ASCII
|
|
294
|
+
string: ''
|
|
295
|
+
headers:
|
|
296
|
+
Accept:
|
|
297
|
+
- application/json; charset=utf-8
|
|
298
|
+
User-Agent:
|
|
299
|
+
- Notion Ruby Client/0.0.8
|
|
300
|
+
Authorization:
|
|
301
|
+
- Bearer <NOTION_API_TOKEN>
|
|
302
|
+
Notion-Version:
|
|
303
|
+
- '2022-02-22'
|
|
304
|
+
Accept-Encoding:
|
|
305
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
|
306
|
+
response:
|
|
307
|
+
status:
|
|
308
|
+
code: 200
|
|
309
|
+
message: OK
|
|
310
|
+
headers:
|
|
311
|
+
Date:
|
|
312
|
+
- Sun, 29 Aug 2021 17:45:05 GMT
|
|
313
|
+
Content-Type:
|
|
314
|
+
- application/json; charset=utf-8
|
|
315
|
+
Transfer-Encoding:
|
|
316
|
+
- chunked
|
|
317
|
+
Connection:
|
|
318
|
+
- keep-alive
|
|
319
|
+
X-Dns-Prefetch-Control:
|
|
320
|
+
- 'off'
|
|
321
|
+
X-Frame-Options:
|
|
322
|
+
- SAMEORIGIN
|
|
323
|
+
Strict-Transport-Security:
|
|
324
|
+
- max-age=5184000; includeSubDomains
|
|
325
|
+
X-Download-Options:
|
|
326
|
+
- noopen
|
|
327
|
+
X-Content-Type-Options:
|
|
328
|
+
- nosniff
|
|
329
|
+
X-Xss-Protection:
|
|
330
|
+
- 1; mode=block
|
|
331
|
+
Referrer-Policy:
|
|
332
|
+
- same-origin
|
|
333
|
+
Content-Security-Policy:
|
|
334
|
+
- 'script-src ''self'' ''unsafe-inline'' ''unsafe-eval'' https://gist.github.com
|
|
335
|
+
https://apis.google.com https://api.amplitude.com https://widget.intercom.io
|
|
336
|
+
https://js.intercomcdn.com https://logs-01.loggly.com https://cdn.segment.com
|
|
337
|
+
https://analytics.pgncs.notion.so https://o324374.ingest.sentry.io https://checkout.stripe.com
|
|
338
|
+
https://js.stripe.com https://embed.typeform.com https://admin.typeform.com
|
|
339
|
+
https://public.profitwell.com js.sentry-cdn.com https://js.chilipiper.com
|
|
340
|
+
https://platform.twitter.com https://cdn.syndication.twimg.com https://www.googletagmanager.com
|
|
341
|
+
https://x.clearbitjs.com https://client-registry.mutinycdn.com https://client.mutinycdn.com/
|
|
342
|
+
https://user-data.mutinycdn.com; connect-src ''self'' https://msgstore.www.notion.so
|
|
343
|
+
wss://msgstore.www.notion.so ws://localhost:* https://notion-emojis.s3-us-west-2.amazonaws.com
|
|
344
|
+
https://s3-us-west-2.amazonaws.com https://s3.us-west-2.amazonaws.com https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
|
|
345
|
+
https: http: https://api.amplitude.com https://api.embed.ly https://js.intercomcdn.com
|
|
346
|
+
https://api-iam.intercom.io wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
|
|
347
|
+
https://cdn.segment.com https://api.segment.io https://analytics.pgncs.notion.so
|
|
348
|
+
https://api.pgncs.notion.so https://o324374.ingest.sentry.io https://checkout.stripe.com
|
|
349
|
+
https://js.stripe.com https://cdn.contentful.com https://preview.contentful.com
|
|
350
|
+
https://images.ctfassets.net https://www2.profitwell.com https://tracking.chilipiper.com
|
|
351
|
+
https://api.chilipiper.com https://api.unsplash.com https://boards-api.greenhouse.io
|
|
352
|
+
https://user-data.mutinycdn.com https://api-v2.mutinyhq.io https://api.statuspage.io
|
|
353
|
+
https://pgncd.notion.so; font-src ''self'' data: https://cdnjs.cloudflare.com
|
|
354
|
+
https://js.intercomcdn.com; img-src ''self'' data: blob: https: https://platform.twitter.com
|
|
355
|
+
https://syndication.twitter.com https://pbs.twimg.com https://ton.twimg.com
|
|
356
|
+
www.googletagmanager.com; style-src ''self'' ''unsafe-inline'' https://cdnjs.cloudflare.com
|
|
357
|
+
https://github.githubassets.com https://js.chilipiper.com https://platform.twitter.com
|
|
358
|
+
https://ton.twimg.com; frame-src https: http:; media-src https: http:'
|
|
359
|
+
X-Content-Security-Policy:
|
|
360
|
+
- 'script-src ''self'' ''unsafe-inline'' ''unsafe-eval'' https://gist.github.com
|
|
361
|
+
https://apis.google.com https://api.amplitude.com https://widget.intercom.io
|
|
362
|
+
https://js.intercomcdn.com https://logs-01.loggly.com https://cdn.segment.com
|
|
363
|
+
https://analytics.pgncs.notion.so https://o324374.ingest.sentry.io https://checkout.stripe.com
|
|
364
|
+
https://js.stripe.com https://embed.typeform.com https://admin.typeform.com
|
|
365
|
+
https://public.profitwell.com js.sentry-cdn.com https://js.chilipiper.com
|
|
366
|
+
https://platform.twitter.com https://cdn.syndication.twimg.com https://www.googletagmanager.com
|
|
367
|
+
https://x.clearbitjs.com https://client-registry.mutinycdn.com https://client.mutinycdn.com/
|
|
368
|
+
https://user-data.mutinycdn.com; connect-src ''self'' https://msgstore.www.notion.so
|
|
369
|
+
wss://msgstore.www.notion.so ws://localhost:* https://notion-emojis.s3-us-west-2.amazonaws.com
|
|
370
|
+
https://s3-us-west-2.amazonaws.com https://s3.us-west-2.amazonaws.com https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
|
|
371
|
+
https: http: https://api.amplitude.com https://api.embed.ly https://js.intercomcdn.com
|
|
372
|
+
https://api-iam.intercom.io wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
|
|
373
|
+
https://cdn.segment.com https://api.segment.io https://analytics.pgncs.notion.so
|
|
374
|
+
https://api.pgncs.notion.so https://o324374.ingest.sentry.io https://checkout.stripe.com
|
|
375
|
+
https://js.stripe.com https://cdn.contentful.com https://preview.contentful.com
|
|
376
|
+
https://images.ctfassets.net https://www2.profitwell.com https://tracking.chilipiper.com
|
|
377
|
+
https://api.chilipiper.com https://api.unsplash.com https://boards-api.greenhouse.io
|
|
378
|
+
https://user-data.mutinycdn.com https://api-v2.mutinyhq.io https://api.statuspage.io
|
|
379
|
+
https://pgncd.notion.so; font-src ''self'' data: https://cdnjs.cloudflare.com
|
|
380
|
+
https://js.intercomcdn.com; img-src ''self'' data: blob: https: https://platform.twitter.com
|
|
381
|
+
https://syndication.twitter.com https://pbs.twimg.com https://ton.twimg.com
|
|
382
|
+
www.googletagmanager.com; style-src ''self'' ''unsafe-inline'' https://cdnjs.cloudflare.com
|
|
383
|
+
https://github.githubassets.com https://js.chilipiper.com https://platform.twitter.com
|
|
384
|
+
https://ton.twimg.com; frame-src https: http:; media-src https: http:'
|
|
385
|
+
X-Webkit-Csp:
|
|
386
|
+
- 'script-src ''self'' ''unsafe-inline'' ''unsafe-eval'' https://gist.github.com
|
|
387
|
+
https://apis.google.com https://api.amplitude.com https://widget.intercom.io
|
|
388
|
+
https://js.intercomcdn.com https://logs-01.loggly.com https://cdn.segment.com
|
|
389
|
+
https://analytics.pgncs.notion.so https://o324374.ingest.sentry.io https://checkout.stripe.com
|
|
390
|
+
https://js.stripe.com https://embed.typeform.com https://admin.typeform.com
|
|
391
|
+
https://public.profitwell.com js.sentry-cdn.com https://js.chilipiper.com
|
|
392
|
+
https://platform.twitter.com https://cdn.syndication.twimg.com https://www.googletagmanager.com
|
|
393
|
+
https://x.clearbitjs.com https://client-registry.mutinycdn.com https://client.mutinycdn.com/
|
|
394
|
+
https://user-data.mutinycdn.com; connect-src ''self'' https://msgstore.www.notion.so
|
|
395
|
+
wss://msgstore.www.notion.so ws://localhost:* https://notion-emojis.s3-us-west-2.amazonaws.com
|
|
396
|
+
https://s3-us-west-2.amazonaws.com https://s3.us-west-2.amazonaws.com https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
|
|
397
|
+
https: http: https://api.amplitude.com https://api.embed.ly https://js.intercomcdn.com
|
|
398
|
+
https://api-iam.intercom.io wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
|
|
399
|
+
https://cdn.segment.com https://api.segment.io https://analytics.pgncs.notion.so
|
|
400
|
+
https://api.pgncs.notion.so https://o324374.ingest.sentry.io https://checkout.stripe.com
|
|
401
|
+
https://js.stripe.com https://cdn.contentful.com https://preview.contentful.com
|
|
402
|
+
https://images.ctfassets.net https://www2.profitwell.com https://tracking.chilipiper.com
|
|
403
|
+
https://api.chilipiper.com https://api.unsplash.com https://boards-api.greenhouse.io
|
|
404
|
+
https://user-data.mutinycdn.com https://api-v2.mutinyhq.io https://api.statuspage.io
|
|
405
|
+
https://pgncd.notion.so; font-src ''self'' data: https://cdnjs.cloudflare.com
|
|
406
|
+
https://js.intercomcdn.com; img-src ''self'' data: blob: https: https://platform.twitter.com
|
|
407
|
+
https://syndication.twitter.com https://pbs.twimg.com https://ton.twimg.com
|
|
408
|
+
www.googletagmanager.com; style-src ''self'' ''unsafe-inline'' https://cdnjs.cloudflare.com
|
|
409
|
+
https://github.githubassets.com https://js.chilipiper.com https://platform.twitter.com
|
|
410
|
+
https://ton.twimg.com; frame-src https: http:; media-src https: http:'
|
|
411
|
+
Set-Cookie:
|
|
412
|
+
- notion_browser_id=c9f9c377-7531-483b-9a08-4f40c4820a0f; Domain=www.notion.so;
|
|
413
|
+
Path=/; Expires=Wed, 07 May 2053 19:31:45 GMT; Secure
|
|
414
|
+
Etag:
|
|
415
|
+
- W/"219-l6W9cQbSU5N+J2IRdLhsfF6TcQs"
|
|
416
|
+
Vary:
|
|
417
|
+
- Accept-Encoding
|
|
418
|
+
Cf-Cache-Status:
|
|
419
|
+
- DYNAMIC
|
|
420
|
+
Expect-Ct:
|
|
421
|
+
- max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
|
|
422
|
+
Server:
|
|
423
|
+
- cloudflare
|
|
424
|
+
Cf-Ray:
|
|
425
|
+
- 6867974bcacc4013-CDG
|
|
426
|
+
body:
|
|
427
|
+
encoding: UTF-8
|
|
428
|
+
string: '{"object":"list","results":[{"object":"block","id":"722ec5e1-f620-4860-a5fd-6de0430db4a8","created_time":"2021-08-29T17:17:00.000Z","last_edited_time":"2021-08-29T17:17:00.000Z","has_children":false,"type":"paragraph","paragraph":{"rich_text":[{"type":"text","text":{"content":"Another
|
|
429
|
+
children","link":null},"annotations":{"bold":false,"italic":false,"strikethrough":false,"underline":false,"code":false,"color":"default"},"plain_text":"Another
|
|
430
|
+
children","href":null}]}}],"next_cursor":"a6cb4553-bdf1-4080-84fa-3e1bceba6912","has_more":true}'
|
|
431
|
+
recorded_at: Sun, 29 Aug 2021 17:45:05 GMT
|
|
432
|
+
- request:
|
|
433
|
+
method: get
|
|
434
|
+
uri: https://api.notion.com/v1/blocks/32af3324-ba02-4516-ae88-5728a4d569f4/children?page_size=1&start_cursor=a6cb4553-bdf1-4080-84fa-3e1bceba6912
|
|
435
|
+
body:
|
|
436
|
+
encoding: US-ASCII
|
|
437
|
+
string: ''
|
|
438
|
+
headers:
|
|
439
|
+
Accept:
|
|
440
|
+
- application/json; charset=utf-8
|
|
441
|
+
User-Agent:
|
|
442
|
+
- Notion Ruby Client/0.0.8
|
|
443
|
+
Authorization:
|
|
444
|
+
- Bearer <NOTION_API_TOKEN>
|
|
445
|
+
Notion-Version:
|
|
446
|
+
- '2022-02-22'
|
|
447
|
+
Accept-Encoding:
|
|
448
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
|
449
|
+
response:
|
|
450
|
+
status:
|
|
451
|
+
code: 200
|
|
452
|
+
message: OK
|
|
453
|
+
headers:
|
|
454
|
+
Date:
|
|
455
|
+
- Sun, 29 Aug 2021 17:45:06 GMT
|
|
456
|
+
Content-Type:
|
|
457
|
+
- application/json; charset=utf-8
|
|
458
|
+
Transfer-Encoding:
|
|
459
|
+
- chunked
|
|
460
|
+
Connection:
|
|
461
|
+
- keep-alive
|
|
462
|
+
X-Dns-Prefetch-Control:
|
|
463
|
+
- 'off'
|
|
464
|
+
X-Frame-Options:
|
|
465
|
+
- SAMEORIGIN
|
|
466
|
+
Strict-Transport-Security:
|
|
467
|
+
- max-age=5184000; includeSubDomains
|
|
468
|
+
X-Download-Options:
|
|
469
|
+
- noopen
|
|
470
|
+
X-Content-Type-Options:
|
|
471
|
+
- nosniff
|
|
472
|
+
X-Xss-Protection:
|
|
473
|
+
- 1; mode=block
|
|
474
|
+
Referrer-Policy:
|
|
475
|
+
- same-origin
|
|
476
|
+
Content-Security-Policy:
|
|
477
|
+
- 'script-src ''self'' ''unsafe-inline'' ''unsafe-eval'' https://gist.github.com
|
|
478
|
+
https://apis.google.com https://api.amplitude.com https://widget.intercom.io
|
|
479
|
+
https://js.intercomcdn.com https://logs-01.loggly.com https://cdn.segment.com
|
|
480
|
+
https://analytics.pgncs.notion.so https://o324374.ingest.sentry.io https://checkout.stripe.com
|
|
481
|
+
https://js.stripe.com https://embed.typeform.com https://admin.typeform.com
|
|
482
|
+
https://public.profitwell.com js.sentry-cdn.com https://js.chilipiper.com
|
|
483
|
+
https://platform.twitter.com https://cdn.syndication.twimg.com https://www.googletagmanager.com
|
|
484
|
+
https://x.clearbitjs.com https://client-registry.mutinycdn.com https://client.mutinycdn.com/
|
|
485
|
+
https://user-data.mutinycdn.com; connect-src ''self'' https://msgstore.www.notion.so
|
|
486
|
+
wss://msgstore.www.notion.so ws://localhost:* https://notion-emojis.s3-us-west-2.amazonaws.com
|
|
487
|
+
https://s3-us-west-2.amazonaws.com https://s3.us-west-2.amazonaws.com https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
|
|
488
|
+
https: http: https://api.amplitude.com https://api.embed.ly https://js.intercomcdn.com
|
|
489
|
+
https://api-iam.intercom.io wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
|
|
490
|
+
https://cdn.segment.com https://api.segment.io https://analytics.pgncs.notion.so
|
|
491
|
+
https://api.pgncs.notion.so https://o324374.ingest.sentry.io https://checkout.stripe.com
|
|
492
|
+
https://js.stripe.com https://cdn.contentful.com https://preview.contentful.com
|
|
493
|
+
https://images.ctfassets.net https://www2.profitwell.com https://tracking.chilipiper.com
|
|
494
|
+
https://api.chilipiper.com https://api.unsplash.com https://boards-api.greenhouse.io
|
|
495
|
+
https://user-data.mutinycdn.com https://api-v2.mutinyhq.io https://api.statuspage.io
|
|
496
|
+
https://pgncd.notion.so; font-src ''self'' data: https://cdnjs.cloudflare.com
|
|
497
|
+
https://js.intercomcdn.com; img-src ''self'' data: blob: https: https://platform.twitter.com
|
|
498
|
+
https://syndication.twitter.com https://pbs.twimg.com https://ton.twimg.com
|
|
499
|
+
www.googletagmanager.com; style-src ''self'' ''unsafe-inline'' https://cdnjs.cloudflare.com
|
|
500
|
+
https://github.githubassets.com https://js.chilipiper.com https://platform.twitter.com
|
|
501
|
+
https://ton.twimg.com; frame-src https: http:; media-src https: http:'
|
|
502
|
+
X-Content-Security-Policy:
|
|
503
|
+
- 'script-src ''self'' ''unsafe-inline'' ''unsafe-eval'' https://gist.github.com
|
|
504
|
+
https://apis.google.com https://api.amplitude.com https://widget.intercom.io
|
|
505
|
+
https://js.intercomcdn.com https://logs-01.loggly.com https://cdn.segment.com
|
|
506
|
+
https://analytics.pgncs.notion.so https://o324374.ingest.sentry.io https://checkout.stripe.com
|
|
507
|
+
https://js.stripe.com https://embed.typeform.com https://admin.typeform.com
|
|
508
|
+
https://public.profitwell.com js.sentry-cdn.com https://js.chilipiper.com
|
|
509
|
+
https://platform.twitter.com https://cdn.syndication.twimg.com https://www.googletagmanager.com
|
|
510
|
+
https://x.clearbitjs.com https://client-registry.mutinycdn.com https://client.mutinycdn.com/
|
|
511
|
+
https://user-data.mutinycdn.com; connect-src ''self'' https://msgstore.www.notion.so
|
|
512
|
+
wss://msgstore.www.notion.so ws://localhost:* https://notion-emojis.s3-us-west-2.amazonaws.com
|
|
513
|
+
https://s3-us-west-2.amazonaws.com https://s3.us-west-2.amazonaws.com https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
|
|
514
|
+
https: http: https://api.amplitude.com https://api.embed.ly https://js.intercomcdn.com
|
|
515
|
+
https://api-iam.intercom.io wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
|
|
516
|
+
https://cdn.segment.com https://api.segment.io https://analytics.pgncs.notion.so
|
|
517
|
+
https://api.pgncs.notion.so https://o324374.ingest.sentry.io https://checkout.stripe.com
|
|
518
|
+
https://js.stripe.com https://cdn.contentful.com https://preview.contentful.com
|
|
519
|
+
https://images.ctfassets.net https://www2.profitwell.com https://tracking.chilipiper.com
|
|
520
|
+
https://api.chilipiper.com https://api.unsplash.com https://boards-api.greenhouse.io
|
|
521
|
+
https://user-data.mutinycdn.com https://api-v2.mutinyhq.io https://api.statuspage.io
|
|
522
|
+
https://pgncd.notion.so; font-src ''self'' data: https://cdnjs.cloudflare.com
|
|
523
|
+
https://js.intercomcdn.com; img-src ''self'' data: blob: https: https://platform.twitter.com
|
|
524
|
+
https://syndication.twitter.com https://pbs.twimg.com https://ton.twimg.com
|
|
525
|
+
www.googletagmanager.com; style-src ''self'' ''unsafe-inline'' https://cdnjs.cloudflare.com
|
|
526
|
+
https://github.githubassets.com https://js.chilipiper.com https://platform.twitter.com
|
|
527
|
+
https://ton.twimg.com; frame-src https: http:; media-src https: http:'
|
|
528
|
+
X-Webkit-Csp:
|
|
529
|
+
- 'script-src ''self'' ''unsafe-inline'' ''unsafe-eval'' https://gist.github.com
|
|
530
|
+
https://apis.google.com https://api.amplitude.com https://widget.intercom.io
|
|
531
|
+
https://js.intercomcdn.com https://logs-01.loggly.com https://cdn.segment.com
|
|
532
|
+
https://analytics.pgncs.notion.so https://o324374.ingest.sentry.io https://checkout.stripe.com
|
|
533
|
+
https://js.stripe.com https://embed.typeform.com https://admin.typeform.com
|
|
534
|
+
https://public.profitwell.com js.sentry-cdn.com https://js.chilipiper.com
|
|
535
|
+
https://platform.twitter.com https://cdn.syndication.twimg.com https://www.googletagmanager.com
|
|
536
|
+
https://x.clearbitjs.com https://client-registry.mutinycdn.com https://client.mutinycdn.com/
|
|
537
|
+
https://user-data.mutinycdn.com; connect-src ''self'' https://msgstore.www.notion.so
|
|
538
|
+
wss://msgstore.www.notion.so ws://localhost:* https://notion-emojis.s3-us-west-2.amazonaws.com
|
|
539
|
+
https://s3-us-west-2.amazonaws.com https://s3.us-west-2.amazonaws.com https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com
|
|
540
|
+
https: http: https://api.amplitude.com https://api.embed.ly https://js.intercomcdn.com
|
|
541
|
+
https://api-iam.intercom.io wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
|
|
542
|
+
https://cdn.segment.com https://api.segment.io https://analytics.pgncs.notion.so
|
|
543
|
+
https://api.pgncs.notion.so https://o324374.ingest.sentry.io https://checkout.stripe.com
|
|
544
|
+
https://js.stripe.com https://cdn.contentful.com https://preview.contentful.com
|
|
545
|
+
https://images.ctfassets.net https://www2.profitwell.com https://tracking.chilipiper.com
|
|
546
|
+
https://api.chilipiper.com https://api.unsplash.com https://boards-api.greenhouse.io
|
|
547
|
+
https://user-data.mutinycdn.com https://api-v2.mutinyhq.io https://api.statuspage.io
|
|
548
|
+
https://pgncd.notion.so; font-src ''self'' data: https://cdnjs.cloudflare.com
|
|
549
|
+
https://js.intercomcdn.com; img-src ''self'' data: blob: https: https://platform.twitter.com
|
|
550
|
+
https://syndication.twitter.com https://pbs.twimg.com https://ton.twimg.com
|
|
551
|
+
www.googletagmanager.com; style-src ''self'' ''unsafe-inline'' https://cdnjs.cloudflare.com
|
|
552
|
+
https://github.githubassets.com https://js.chilipiper.com https://platform.twitter.com
|
|
553
|
+
https://ton.twimg.com; frame-src https: http:; media-src https: http:'
|
|
554
|
+
Set-Cookie:
|
|
555
|
+
- notion_browser_id=f2736075-4f73-453d-8728-04468bf8e7d9; Domain=www.notion.so;
|
|
556
|
+
Path=/; Expires=Wed, 07 May 2053 19:31:46 GMT; Secure
|
|
557
|
+
Etag:
|
|
558
|
+
- W/"1f8-vq1PZHzZhe2D041J6ghX+Z0Lbcc"
|
|
559
|
+
Vary:
|
|
560
|
+
- Accept-Encoding
|
|
561
|
+
Cf-Cache-Status:
|
|
562
|
+
- DYNAMIC
|
|
563
|
+
Expect-Ct:
|
|
564
|
+
- max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
|
|
565
|
+
Server:
|
|
566
|
+
- cloudflare
|
|
567
|
+
Cf-Ray:
|
|
568
|
+
- 686797519c6c0828-CDG
|
|
569
|
+
body:
|
|
570
|
+
encoding: UTF-8
|
|
571
|
+
string: '{"object":"list","results":[{"object":"block","id":"a6cb4553-bdf1-4080-84fa-3e1bceba6912","created_time":"2021-08-29T17:18:00.000Z","last_edited_time":"2021-08-29T17:18:00.000Z","has_children":false,"type":"paragraph","paragraph":{"rich_text":[{"type":"text","text":{"content":"Another
|
|
572
|
+
children","link":null},"annotations":{"bold":false,"italic":false,"strikethrough":false,"underline":false,"code":false,"color":"default"},"plain_text":"Another
|
|
573
|
+
children","href":null}]}}],"next_cursor":null,"has_more":false}'
|
|
574
|
+
recorded_at: Sun, 29 Aug 2021 17:45:06 GMT
|
|
575
|
+
recorded_with: VCR 6.0.0
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
---
|
|
2
|
+
http_interactions:
|
|
3
|
+
- request:
|
|
4
|
+
method: post
|
|
5
|
+
uri: https://api.notion.com/v1/data_sources/6a91c56ebc5e46699e34952e09ec53c0/query
|
|
6
|
+
body:
|
|
7
|
+
encoding: UTF-8
|
|
8
|
+
string: '{"page_size":1}'
|
|
9
|
+
headers:
|
|
10
|
+
Accept:
|
|
11
|
+
- application/json; charset=utf-8
|
|
12
|
+
Authorization:
|
|
13
|
+
- Bearer <NOTION_API_TOKEN>
|
|
14
|
+
Notion-Version:
|
|
15
|
+
- '2025-09-03'
|
|
16
|
+
Content-Type:
|
|
17
|
+
- application/json
|
|
18
|
+
response:
|
|
19
|
+
status:
|
|
20
|
+
code: 200
|
|
21
|
+
message: OK
|
|
22
|
+
headers:
|
|
23
|
+
Content-Type:
|
|
24
|
+
- application/json; charset=utf-8
|
|
25
|
+
body:
|
|
26
|
+
encoding: UTF-8
|
|
27
|
+
string: '{"object":"list","results":[{"object":"page","id":"c7fd1abe-8114-44ea-be77-9632ea33e581","created_time":"2021-04-30T07:49:00.000Z","last_edited_time":"2021-08-29T17:45:00.000Z","cover":null,"icon":null,"parent":{"type":"data_source_id","data_source_id":"6a91c56e-bc5e-4669-9e34-952e09ec53c0","database_id":"dd428e9d-d3fe-4171-870d-a7a1902c748b"},"archived":false,"properties":{"Name":{"id":"title","type":"title","title":[{"type":"text","text":{"content":"Nicolas Goutay","link":null},"annotations":{"bold":false,"italic":false,"strikethrough":false,"underline":false,"code":false,"color":"default"},"plain_text":"Nicolas Goutay","href":null}]}},"url":"https://www.notion.so/Nicolas-Goutay-c7fd1abe811444eabe779632ea33e581"}],"next_cursor":null,"has_more":false,"type":"page","page":{}}'
|
|
28
|
+
recorded_at: Wed, 03 Sep 2025 12:00:00 GMT
|
|
29
|
+
recorded_with: VCR 6.0.0
|