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,150 @@
|
|
|
1
|
+
---
|
|
2
|
+
http_interactions:
|
|
3
|
+
- request:
|
|
4
|
+
method: get
|
|
5
|
+
uri: https://api.notion.com/v1/databases/dd428e9dd3fe4171870da7a1902c748b
|
|
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:48: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=43ba4e7a-f034-492a-a80a-cc7abeb1e15a; Domain=www.notion.so;
|
|
127
|
+
Path=/; Expires=Wed, 07 May 2053 19:34:43 GMT; Secure
|
|
128
|
+
Etag:
|
|
129
|
+
- W/"3a6-+7yCJm5S35XfYPO/FbqE3H7jEno"
|
|
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
|
+
- 68679ba448184069-CDG
|
|
140
|
+
body:
|
|
141
|
+
encoding: UTF-8
|
|
142
|
+
string: "{\"object\":\"database\",\"id\":\"dd428e9d-d3fe-4171-870d-a7a1902c748b\",\"cover\":null,\"icon\":null,\"created_time\":\"2021-04-30T07:49:00.000Z\",\"last_edited_time\":\"2021-08-29T17:48:00.000Z\",\"title\":[{\"type\":\"text\",\"text\":{\"content\":\"Orbit
|
|
143
|
+
\U0001F49C Notion\",\"link\":null},\"annotations\":{\"bold\":false,\"italic\":false,\"strikethrough\":false,\"underline\":false,\"code\":false,\"color\":\"default\"},\"plain_text\":\"Orbit
|
|
144
|
+
\U0001F49C Notion\",\"href\":null}],\"properties\":{\"Orbit Status\":{\"id\":\"%3DadK\",\"name\":\"Orbit
|
|
145
|
+
Status\",\"type\":\"rich_text\",\"rich_text\":{}},\"Orbit Note URL\":{\"id\":\"L%3AsP\",\"name\":\"Orbit
|
|
146
|
+
Note URL\",\"type\":\"url\",\"url\":{}},\"Member Email\":{\"id\":\"%5BIFC\",\"name\":\"Member
|
|
147
|
+
Email\",\"type\":\"email\",\"email\":{}},\"Send to Orbit\":{\"id\":\"%5EoR%3F\",\"name\":\"Send
|
|
148
|
+
to Orbit\",\"type\":\"checkbox\",\"checkbox\":{}},\"Date\":{\"id\":\"g%60km\",\"name\":\"Date\",\"type\":\"date\",\"date\":{}},\"Name\":{\"id\":\"title\",\"name\":\"Name\",\"type\":\"title\",\"title\":{}}},\"parent\":{\"type\":\"workspace\",\"workspace\":true}}"
|
|
149
|
+
recorded_at: Sun, 29 Aug 2021 17:48:03 GMT
|
|
150
|
+
recorded_with: VCR 6.0.0
|
|
@@ -0,0 +1,154 @@
|
|
|
1
|
+
---
|
|
2
|
+
http_interactions:
|
|
3
|
+
- request:
|
|
4
|
+
method: post
|
|
5
|
+
uri: https://api.notion.com/v1/databases/dd428e9dd3fe4171870da7a1902c748b/query
|
|
6
|
+
body:
|
|
7
|
+
encoding: UTF-8
|
|
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
|
+
Content-Type:
|
|
19
|
+
- application/json
|
|
20
|
+
Content-Length:
|
|
21
|
+
- '0'
|
|
22
|
+
Accept-Encoding:
|
|
23
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
|
24
|
+
response:
|
|
25
|
+
status:
|
|
26
|
+
code: 200
|
|
27
|
+
message: OK
|
|
28
|
+
headers:
|
|
29
|
+
Date:
|
|
30
|
+
- Sun, 29 Aug 2021 17:47:59 GMT
|
|
31
|
+
Content-Type:
|
|
32
|
+
- application/json; charset=utf-8
|
|
33
|
+
Transfer-Encoding:
|
|
34
|
+
- chunked
|
|
35
|
+
Connection:
|
|
36
|
+
- keep-alive
|
|
37
|
+
X-Dns-Prefetch-Control:
|
|
38
|
+
- 'off'
|
|
39
|
+
X-Frame-Options:
|
|
40
|
+
- SAMEORIGIN
|
|
41
|
+
Strict-Transport-Security:
|
|
42
|
+
- max-age=5184000; includeSubDomains
|
|
43
|
+
X-Download-Options:
|
|
44
|
+
- noopen
|
|
45
|
+
X-Content-Type-Options:
|
|
46
|
+
- nosniff
|
|
47
|
+
X-Xss-Protection:
|
|
48
|
+
- 1; mode=block
|
|
49
|
+
Referrer-Policy:
|
|
50
|
+
- same-origin
|
|
51
|
+
Content-Security-Policy:
|
|
52
|
+
- 'script-src ''self'' ''unsafe-inline'' ''unsafe-eval'' https://gist.github.com
|
|
53
|
+
https://apis.google.com https://api.amplitude.com https://widget.intercom.io
|
|
54
|
+
https://js.intercomcdn.com https://logs-01.loggly.com https://cdn.segment.com
|
|
55
|
+
https://analytics.pgncs.notion.so https://o324374.ingest.sentry.io https://checkout.stripe.com
|
|
56
|
+
https://js.stripe.com https://embed.typeform.com https://admin.typeform.com
|
|
57
|
+
https://public.profitwell.com js.sentry-cdn.com https://js.chilipiper.com
|
|
58
|
+
https://platform.twitter.com https://cdn.syndication.twimg.com https://www.googletagmanager.com
|
|
59
|
+
https://x.clearbitjs.com https://client-registry.mutinycdn.com https://client.mutinycdn.com/
|
|
60
|
+
https://user-data.mutinycdn.com; connect-src ''self'' https://msgstore.www.notion.so
|
|
61
|
+
wss://msgstore.www.notion.so ws://localhost:* https://notion-emojis.s3-us-west-2.amazonaws.com
|
|
62
|
+
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
|
|
63
|
+
https: http: https://api.amplitude.com https://api.embed.ly https://js.intercomcdn.com
|
|
64
|
+
https://api-iam.intercom.io wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
|
|
65
|
+
https://cdn.segment.com https://api.segment.io https://analytics.pgncs.notion.so
|
|
66
|
+
https://api.pgncs.notion.so https://o324374.ingest.sentry.io https://checkout.stripe.com
|
|
67
|
+
https://js.stripe.com https://cdn.contentful.com https://preview.contentful.com
|
|
68
|
+
https://images.ctfassets.net https://www2.profitwell.com https://tracking.chilipiper.com
|
|
69
|
+
https://api.chilipiper.com https://api.unsplash.com https://boards-api.greenhouse.io
|
|
70
|
+
https://user-data.mutinycdn.com https://api-v2.mutinyhq.io https://api.statuspage.io
|
|
71
|
+
https://pgncd.notion.so; font-src ''self'' data: https://cdnjs.cloudflare.com
|
|
72
|
+
https://js.intercomcdn.com; img-src ''self'' data: blob: https: https://platform.twitter.com
|
|
73
|
+
https://syndication.twitter.com https://pbs.twimg.com https://ton.twimg.com
|
|
74
|
+
www.googletagmanager.com; style-src ''self'' ''unsafe-inline'' https://cdnjs.cloudflare.com
|
|
75
|
+
https://github.githubassets.com https://js.chilipiper.com https://platform.twitter.com
|
|
76
|
+
https://ton.twimg.com; frame-src https: http:; media-src https: http:'
|
|
77
|
+
X-Content-Security-Policy:
|
|
78
|
+
- 'script-src ''self'' ''unsafe-inline'' ''unsafe-eval'' https://gist.github.com
|
|
79
|
+
https://apis.google.com https://api.amplitude.com https://widget.intercom.io
|
|
80
|
+
https://js.intercomcdn.com https://logs-01.loggly.com https://cdn.segment.com
|
|
81
|
+
https://analytics.pgncs.notion.so https://o324374.ingest.sentry.io https://checkout.stripe.com
|
|
82
|
+
https://js.stripe.com https://embed.typeform.com https://admin.typeform.com
|
|
83
|
+
https://public.profitwell.com js.sentry-cdn.com https://js.chilipiper.com
|
|
84
|
+
https://platform.twitter.com https://cdn.syndication.twimg.com https://www.googletagmanager.com
|
|
85
|
+
https://x.clearbitjs.com https://client-registry.mutinycdn.com https://client.mutinycdn.com/
|
|
86
|
+
https://user-data.mutinycdn.com; connect-src ''self'' https://msgstore.www.notion.so
|
|
87
|
+
wss://msgstore.www.notion.so ws://localhost:* https://notion-emojis.s3-us-west-2.amazonaws.com
|
|
88
|
+
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
|
|
89
|
+
https: http: https://api.amplitude.com https://api.embed.ly https://js.intercomcdn.com
|
|
90
|
+
https://api-iam.intercom.io wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
|
|
91
|
+
https://cdn.segment.com https://api.segment.io https://analytics.pgncs.notion.so
|
|
92
|
+
https://api.pgncs.notion.so https://o324374.ingest.sentry.io https://checkout.stripe.com
|
|
93
|
+
https://js.stripe.com https://cdn.contentful.com https://preview.contentful.com
|
|
94
|
+
https://images.ctfassets.net https://www2.profitwell.com https://tracking.chilipiper.com
|
|
95
|
+
https://api.chilipiper.com https://api.unsplash.com https://boards-api.greenhouse.io
|
|
96
|
+
https://user-data.mutinycdn.com https://api-v2.mutinyhq.io https://api.statuspage.io
|
|
97
|
+
https://pgncd.notion.so; font-src ''self'' data: https://cdnjs.cloudflare.com
|
|
98
|
+
https://js.intercomcdn.com; img-src ''self'' data: blob: https: https://platform.twitter.com
|
|
99
|
+
https://syndication.twitter.com https://pbs.twimg.com https://ton.twimg.com
|
|
100
|
+
www.googletagmanager.com; style-src ''self'' ''unsafe-inline'' https://cdnjs.cloudflare.com
|
|
101
|
+
https://github.githubassets.com https://js.chilipiper.com https://platform.twitter.com
|
|
102
|
+
https://ton.twimg.com; frame-src https: http:; media-src https: http:'
|
|
103
|
+
X-Webkit-Csp:
|
|
104
|
+
- 'script-src ''self'' ''unsafe-inline'' ''unsafe-eval'' https://gist.github.com
|
|
105
|
+
https://apis.google.com https://api.amplitude.com https://widget.intercom.io
|
|
106
|
+
https://js.intercomcdn.com https://logs-01.loggly.com https://cdn.segment.com
|
|
107
|
+
https://analytics.pgncs.notion.so https://o324374.ingest.sentry.io https://checkout.stripe.com
|
|
108
|
+
https://js.stripe.com https://embed.typeform.com https://admin.typeform.com
|
|
109
|
+
https://public.profitwell.com js.sentry-cdn.com https://js.chilipiper.com
|
|
110
|
+
https://platform.twitter.com https://cdn.syndication.twimg.com https://www.googletagmanager.com
|
|
111
|
+
https://x.clearbitjs.com https://client-registry.mutinycdn.com https://client.mutinycdn.com/
|
|
112
|
+
https://user-data.mutinycdn.com; connect-src ''self'' https://msgstore.www.notion.so
|
|
113
|
+
wss://msgstore.www.notion.so ws://localhost:* https://notion-emojis.s3-us-west-2.amazonaws.com
|
|
114
|
+
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
|
|
115
|
+
https: http: https://api.amplitude.com https://api.embed.ly https://js.intercomcdn.com
|
|
116
|
+
https://api-iam.intercom.io wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
|
|
117
|
+
https://cdn.segment.com https://api.segment.io https://analytics.pgncs.notion.so
|
|
118
|
+
https://api.pgncs.notion.so https://o324374.ingest.sentry.io https://checkout.stripe.com
|
|
119
|
+
https://js.stripe.com https://cdn.contentful.com https://preview.contentful.com
|
|
120
|
+
https://images.ctfassets.net https://www2.profitwell.com https://tracking.chilipiper.com
|
|
121
|
+
https://api.chilipiper.com https://api.unsplash.com https://boards-api.greenhouse.io
|
|
122
|
+
https://user-data.mutinycdn.com https://api-v2.mutinyhq.io https://api.statuspage.io
|
|
123
|
+
https://pgncd.notion.so; font-src ''self'' data: https://cdnjs.cloudflare.com
|
|
124
|
+
https://js.intercomcdn.com; img-src ''self'' data: blob: https: https://platform.twitter.com
|
|
125
|
+
https://syndication.twitter.com https://pbs.twimg.com https://ton.twimg.com
|
|
126
|
+
www.googletagmanager.com; style-src ''self'' ''unsafe-inline'' https://cdnjs.cloudflare.com
|
|
127
|
+
https://github.githubassets.com https://js.chilipiper.com https://platform.twitter.com
|
|
128
|
+
https://ton.twimg.com; frame-src https: http:; media-src https: http:'
|
|
129
|
+
Set-Cookie:
|
|
130
|
+
- notion_browser_id=f8164d1e-85fa-4ca5-9f19-b224dd96f559; Domain=www.notion.so;
|
|
131
|
+
Path=/; Expires=Wed, 07 May 2053 19:34:39 GMT; Secure
|
|
132
|
+
Etag:
|
|
133
|
+
- W/"4f2-gJyyePHpaRcmRm1OpDpzyoMMVwg"
|
|
134
|
+
Vary:
|
|
135
|
+
- Accept-Encoding
|
|
136
|
+
Cf-Cache-Status:
|
|
137
|
+
- DYNAMIC
|
|
138
|
+
Expect-Ct:
|
|
139
|
+
- max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
|
|
140
|
+
Server:
|
|
141
|
+
- cloudflare
|
|
142
|
+
Cf-Ray:
|
|
143
|
+
- 68679b8e4aed04a3-CDG
|
|
144
|
+
body:
|
|
145
|
+
encoding: UTF-8
|
|
146
|
+
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":"database_id","database_id":"dd428e9d-d3fe-4171-870d-a7a1902c748b"},"archived":false,"properties":{"Orbit
|
|
147
|
+
Status":{"id":"%3DadK","type":"rich_text","rich_text":[{"type":"text","text":{"content":"OK","link":null},"annotations":{"bold":false,"italic":false,"strikethrough":false,"underline":false,"code":false,"color":"default"},"plain_text":"OK","href":null}]},"Orbit
|
|
148
|
+
Note URL":{"id":"L%3AsP","type":"url","url":"https://app.orbit.love/orbit/members/phacks3?type=notes"},"Member
|
|
149
|
+
Email":{"id":"%5BIFC","type":"email","email":"nicolas@orbit.love"},"Send to
|
|
150
|
+
Orbit":{"id":"%5EoR%3F","type":"checkbox","checkbox":true},"Date":{"id":"g%60km","type":"date","date":null},"Name":{"id":"title","type":"title","title":[{"type":"text","text":{"content":"Nicolas
|
|
151
|
+
Goutay","link":null},"annotations":{"bold":false,"italic":false,"strikethrough":false,"underline":false,"code":false,"color":"default"},"plain_text":"Nicolas
|
|
152
|
+
Goutay","href":null}]}},"url":"https://www.notion.so/Nicolas-Goutay-c7fd1abe811444eabe779632ea33e581"}],"next_cursor":null,"has_more":false,"type":"page","page":{}}'
|
|
153
|
+
recorded_at: Sun, 29 Aug 2021 17:47:59 GMT
|
|
154
|
+
recorded_with: VCR 6.0.0
|
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
---
|
|
2
|
+
http_interactions:
|
|
3
|
+
- request:
|
|
4
|
+
method: delete
|
|
5
|
+
uri: https://api.notion.com/v1/blocks/77b5d405a5e840229c70b7766d1e8c4b
|
|
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.1.0-beta1
|
|
14
|
+
Authorization:
|
|
15
|
+
- Bearer <NOTION_API_TOKEN>
|
|
16
|
+
Notion-Version:
|
|
17
|
+
- '2021-08-16'
|
|
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, 20 Mar 2022 16:43:19 GMT
|
|
27
|
+
Content-Type:
|
|
28
|
+
- application/json; charset=utf-8
|
|
29
|
+
Transfer-Encoding:
|
|
30
|
+
- chunked
|
|
31
|
+
Connection:
|
|
32
|
+
- keep-alive
|
|
33
|
+
Set-Cookie:
|
|
34
|
+
- notion_browser_id=95b580ce-d968-418c-9456-a1fa47a2a965; Domain=www.notion.so;
|
|
35
|
+
Path=/; Expires=Mon, 20 Mar 2023 16:43:19 GMT; Secure
|
|
36
|
+
- notion_check_cookie_consent=true; Domain=www.notion.so; Path=/; Expires=Mon,
|
|
37
|
+
21 Mar 2022 16:43:19 GMT; Secure
|
|
38
|
+
X-Dns-Prefetch-Control:
|
|
39
|
+
- 'off'
|
|
40
|
+
X-Frame-Options:
|
|
41
|
+
- SAMEORIGIN
|
|
42
|
+
Strict-Transport-Security:
|
|
43
|
+
- max-age=5184000; includeSubDomains
|
|
44
|
+
X-Download-Options:
|
|
45
|
+
- noopen
|
|
46
|
+
X-Content-Type-Options:
|
|
47
|
+
- nosniff
|
|
48
|
+
X-Xss-Protection:
|
|
49
|
+
- 1; mode=block
|
|
50
|
+
Referrer-Policy:
|
|
51
|
+
- same-origin
|
|
52
|
+
Content-Security-Policy:
|
|
53
|
+
- 'script-src ''self'' ''unsafe-inline'' ''unsafe-eval'' https://gist.github.com
|
|
54
|
+
https://apis.google.com https://cdn.amplitude.com https://api.amplitude.com
|
|
55
|
+
https://hkfxbbdzib.notion.so https://widget.intercom.io https://js.intercomcdn.com
|
|
56
|
+
https://logs-01.loggly.com https://cdn.segment.com https://analytics.pgncs.notion.so
|
|
57
|
+
https://o324374.ingest.sentry.io https://checkout.stripe.com https://js.stripe.com
|
|
58
|
+
https://embed.typeform.com https://admin.typeform.com https://public.profitwell.com
|
|
59
|
+
js.sentry-cdn.com https://js.chilipiper.com https://platform.twitter.com https://cdn.syndication.twimg.com;
|
|
60
|
+
connect-src ''self'' https://msgstore.www.notion.so wss://msgstore.www.notion.so
|
|
61
|
+
ws://localhost:* ws://127.0.0.1:* https://notion-emojis.s3-us-west-2.amazonaws.com
|
|
62
|
+
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
|
|
63
|
+
https: http: https://cdn.amplitude.com https://api.amplitude.com https://hkfxbbdzib.notion.so
|
|
64
|
+
https://www.notion.so https://api.embed.ly https://js.intercomcdn.com https://api-iam.intercom.io
|
|
65
|
+
wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com https://cdn.segment.com
|
|
66
|
+
https://api.segment.io https://analytics.pgncs.notion.so https://api.pgncs.notion.so
|
|
67
|
+
https://o324374.ingest.sentry.io https://checkout.stripe.com https://js.stripe.com
|
|
68
|
+
https://cdn.contentful.com https://preview.contentful.com https://images.ctfassets.net
|
|
69
|
+
https://www2.profitwell.com https://tracking.chilipiper.com https://api.chilipiper.com
|
|
70
|
+
https://api.unsplash.com https://boards-api.greenhouse.io https://api.statuspage.io
|
|
71
|
+
https://pgncd.notion.so https://api.statsig.com; font-src ''self'' data: https://cdnjs.cloudflare.com
|
|
72
|
+
https://js.intercomcdn.com; img-src ''self'' data: blob: https: https://platform.twitter.com
|
|
73
|
+
https://syndication.twitter.com https://pbs.twimg.com https://ton.twimg.com;
|
|
74
|
+
style-src ''self'' ''unsafe-inline'' https://cdnjs.cloudflare.com https://github.githubassets.com
|
|
75
|
+
https://js.chilipiper.com https://platform.twitter.com https://ton.twimg.com;
|
|
76
|
+
frame-src https: http:; media-src https: http:'
|
|
77
|
+
X-Content-Security-Policy:
|
|
78
|
+
- 'script-src ''self'' ''unsafe-inline'' ''unsafe-eval'' https://gist.github.com
|
|
79
|
+
https://apis.google.com https://cdn.amplitude.com https://api.amplitude.com
|
|
80
|
+
https://hkfxbbdzib.notion.so https://widget.intercom.io https://js.intercomcdn.com
|
|
81
|
+
https://logs-01.loggly.com https://cdn.segment.com https://analytics.pgncs.notion.so
|
|
82
|
+
https://o324374.ingest.sentry.io https://checkout.stripe.com https://js.stripe.com
|
|
83
|
+
https://embed.typeform.com https://admin.typeform.com https://public.profitwell.com
|
|
84
|
+
js.sentry-cdn.com https://js.chilipiper.com https://platform.twitter.com https://cdn.syndication.twimg.com;
|
|
85
|
+
connect-src ''self'' https://msgstore.www.notion.so wss://msgstore.www.notion.so
|
|
86
|
+
ws://localhost:* ws://127.0.0.1:* https://notion-emojis.s3-us-west-2.amazonaws.com
|
|
87
|
+
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
|
|
88
|
+
https: http: https://cdn.amplitude.com https://api.amplitude.com https://hkfxbbdzib.notion.so
|
|
89
|
+
https://www.notion.so https://api.embed.ly https://js.intercomcdn.com https://api-iam.intercom.io
|
|
90
|
+
wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com https://cdn.segment.com
|
|
91
|
+
https://api.segment.io https://analytics.pgncs.notion.so https://api.pgncs.notion.so
|
|
92
|
+
https://o324374.ingest.sentry.io https://checkout.stripe.com https://js.stripe.com
|
|
93
|
+
https://cdn.contentful.com https://preview.contentful.com https://images.ctfassets.net
|
|
94
|
+
https://www2.profitwell.com https://tracking.chilipiper.com https://api.chilipiper.com
|
|
95
|
+
https://api.unsplash.com https://boards-api.greenhouse.io https://api.statuspage.io
|
|
96
|
+
https://pgncd.notion.so https://api.statsig.com; font-src ''self'' data: https://cdnjs.cloudflare.com
|
|
97
|
+
https://js.intercomcdn.com; img-src ''self'' data: blob: https: https://platform.twitter.com
|
|
98
|
+
https://syndication.twitter.com https://pbs.twimg.com https://ton.twimg.com;
|
|
99
|
+
style-src ''self'' ''unsafe-inline'' https://cdnjs.cloudflare.com https://github.githubassets.com
|
|
100
|
+
https://js.chilipiper.com https://platform.twitter.com https://ton.twimg.com;
|
|
101
|
+
frame-src https: http:; media-src https: http:'
|
|
102
|
+
X-Webkit-Csp:
|
|
103
|
+
- 'script-src ''self'' ''unsafe-inline'' ''unsafe-eval'' https://gist.github.com
|
|
104
|
+
https://apis.google.com https://cdn.amplitude.com https://api.amplitude.com
|
|
105
|
+
https://hkfxbbdzib.notion.so https://widget.intercom.io https://js.intercomcdn.com
|
|
106
|
+
https://logs-01.loggly.com https://cdn.segment.com https://analytics.pgncs.notion.so
|
|
107
|
+
https://o324374.ingest.sentry.io https://checkout.stripe.com https://js.stripe.com
|
|
108
|
+
https://embed.typeform.com https://admin.typeform.com https://public.profitwell.com
|
|
109
|
+
js.sentry-cdn.com https://js.chilipiper.com https://platform.twitter.com https://cdn.syndication.twimg.com;
|
|
110
|
+
connect-src ''self'' https://msgstore.www.notion.so wss://msgstore.www.notion.so
|
|
111
|
+
ws://localhost:* ws://127.0.0.1:* https://notion-emojis.s3-us-west-2.amazonaws.com
|
|
112
|
+
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
|
|
113
|
+
https: http: https://cdn.amplitude.com https://api.amplitude.com https://hkfxbbdzib.notion.so
|
|
114
|
+
https://www.notion.so https://api.embed.ly https://js.intercomcdn.com https://api-iam.intercom.io
|
|
115
|
+
wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com https://cdn.segment.com
|
|
116
|
+
https://api.segment.io https://analytics.pgncs.notion.so https://api.pgncs.notion.so
|
|
117
|
+
https://o324374.ingest.sentry.io https://checkout.stripe.com https://js.stripe.com
|
|
118
|
+
https://cdn.contentful.com https://preview.contentful.com https://images.ctfassets.net
|
|
119
|
+
https://www2.profitwell.com https://tracking.chilipiper.com https://api.chilipiper.com
|
|
120
|
+
https://api.unsplash.com https://boards-api.greenhouse.io https://api.statuspage.io
|
|
121
|
+
https://pgncd.notion.so https://api.statsig.com; font-src ''self'' data: https://cdnjs.cloudflare.com
|
|
122
|
+
https://js.intercomcdn.com; img-src ''self'' data: blob: https: https://platform.twitter.com
|
|
123
|
+
https://syndication.twitter.com https://pbs.twimg.com https://ton.twimg.com;
|
|
124
|
+
style-src ''self'' ''unsafe-inline'' https://cdnjs.cloudflare.com https://github.githubassets.com
|
|
125
|
+
https://js.chilipiper.com https://platform.twitter.com https://ton.twimg.com;
|
|
126
|
+
frame-src https: http:; media-src https: http:'
|
|
127
|
+
Etag:
|
|
128
|
+
- W/"274-ZMuHa52hBHI+h+wwKiieL5Yeyaw"
|
|
129
|
+
Vary:
|
|
130
|
+
- Accept-Encoding
|
|
131
|
+
Cf-Cache-Status:
|
|
132
|
+
- DYNAMIC
|
|
133
|
+
Expect-Ct:
|
|
134
|
+
- max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
|
|
135
|
+
Server:
|
|
136
|
+
- cloudflare
|
|
137
|
+
Cf-Ray:
|
|
138
|
+
- 6eefe7f19dba104b-MRS
|
|
139
|
+
body:
|
|
140
|
+
encoding: UTF-8
|
|
141
|
+
string: '{"object":"block","id":"77b5d405-a5e8-4022-9c70-b7766d1e8c4b","created_time":"2022-03-20T16:38:00.000Z","last_edited_time":"2022-03-20T16:43:00.000Z","created_by":{"object":"user","id":"a8da8d30-c858-4c3d-87ad-3f2d477bd98d"},"last_edited_by":{"object":"user","id":"c1464b55-9bec-417d-9392-dc687623ab28"},"has_children":false,"archived":true,"type":"paragraph","paragraph":{"color":"default","text":[{"type":"text","text":{"content":"Should
|
|
142
|
+
be deleted","link":null},"annotations":{"bold":false,"italic":false,"strikethrough":false,"underline":false,"code":false,"color":"default"},"plain_text":"Should
|
|
143
|
+
be deleted","href":null}]}}'
|
|
144
|
+
recorded_at: Sun, 20 Mar 2022 16:43:19 GMT
|
|
145
|
+
recorded_with: VCR 6.0.0
|
|
@@ -0,0 +1,150 @@
|
|
|
1
|
+
---
|
|
2
|
+
http_interactions:
|
|
3
|
+
- request:
|
|
4
|
+
method: get
|
|
5
|
+
uri: https://api.notion.com/v1/pages/c7fd1abe-8114-44ea-be77-9632ea33e581
|
|
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:50:19 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=8b924688-6d69-4b77-8cbc-fd4a6e90df58; Domain=www.notion.so;
|
|
127
|
+
Path=/; Expires=Wed, 07 May 2053 19:36:59 GMT; Secure
|
|
128
|
+
Etag:
|
|
129
|
+
- W/"4b0-/rmTZAISr+3b/Bbqv4avTjqHwHc"
|
|
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
|
+
- 68679ef9adcc082c-CDG
|
|
140
|
+
body:
|
|
141
|
+
encoding: UTF-8
|
|
142
|
+
string: '{"object":"page","id":"c7fd1abe-8114-44ea-be77-9632ea33e581","created_time":"2021-04-30T07:49:00.000Z","last_edited_time":"2021-08-29T17:48:00.000Z","cover":null,"icon":null,"parent":{"type":"database_id","database_id":"dd428e9d-d3fe-4171-870d-a7a1902c748b"},"archived":false,"properties":{"Orbit
|
|
143
|
+
Status":{"id":"%3DadK","type":"rich_text","rich_text":[{"type":"text","text":{"content":"OK","link":null},"annotations":{"bold":false,"italic":false,"strikethrough":false,"underline":false,"code":false,"color":"default"},"plain_text":"OK","href":null}]},"Orbit
|
|
144
|
+
Note URL":{"id":"L%3AsP","type":"url","url":"https://app.orbit.love/orbit/members/phacks3?type=notes"},"Member
|
|
145
|
+
Email":{"id":"%5BIFC","type":"email","email":"nicolas@orbit.love"},"Send to
|
|
146
|
+
Orbit":{"id":"%5EoR%3F","type":"checkbox","checkbox":true},"Date":{"id":"g%60km","type":"date","date":null},"Name":{"id":"title","type":"title","title":[{"type":"text","text":{"content":"Nicolas
|
|
147
|
+
Goutay","link":null},"annotations":{"bold":false,"italic":false,"strikethrough":false,"underline":false,"code":false,"color":"default"},"plain_text":"Nicolas
|
|
148
|
+
Goutay","href":null}]}},"url":"https://www.notion.so/Nicolas-Goutay-c7fd1abe811444eabe779632ea33e581"}'
|
|
149
|
+
recorded_at: Sun, 29 Aug 2021 17:50:19 GMT
|
|
150
|
+
recorded_with: VCR 6.0.0
|