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,148 @@
|
|
|
1
|
+
---
|
|
2
|
+
http_interactions:
|
|
3
|
+
- request:
|
|
4
|
+
method: patch
|
|
5
|
+
uri: https://api.notion.com/v1/blocks/6e842658-eb3d-4ea9-9bbf-e86104151729
|
|
6
|
+
body:
|
|
7
|
+
encoding: UTF-8
|
|
8
|
+
string: '{"to_do":{"rich_text":[{"text":{"content":"A todo"}}],"checked":true}}'
|
|
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
|
+
Accept-Encoding:
|
|
21
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
|
22
|
+
response:
|
|
23
|
+
status:
|
|
24
|
+
code: 200
|
|
25
|
+
message: OK
|
|
26
|
+
headers:
|
|
27
|
+
Date:
|
|
28
|
+
- Sun, 29 Aug 2021 17:45:02 GMT
|
|
29
|
+
Content-Type:
|
|
30
|
+
- application/json; charset=utf-8
|
|
31
|
+
Transfer-Encoding:
|
|
32
|
+
- chunked
|
|
33
|
+
Connection:
|
|
34
|
+
- keep-alive
|
|
35
|
+
X-Dns-Prefetch-Control:
|
|
36
|
+
- 'off'
|
|
37
|
+
X-Frame-Options:
|
|
38
|
+
- SAMEORIGIN
|
|
39
|
+
Strict-Transport-Security:
|
|
40
|
+
- max-age=5184000; includeSubDomains
|
|
41
|
+
X-Download-Options:
|
|
42
|
+
- noopen
|
|
43
|
+
X-Content-Type-Options:
|
|
44
|
+
- nosniff
|
|
45
|
+
X-Xss-Protection:
|
|
46
|
+
- 1; mode=block
|
|
47
|
+
Referrer-Policy:
|
|
48
|
+
- same-origin
|
|
49
|
+
Content-Security-Policy:
|
|
50
|
+
- 'script-src ''self'' ''unsafe-inline'' ''unsafe-eval'' https://gist.github.com
|
|
51
|
+
https://apis.google.com https://api.amplitude.com https://widget.intercom.io
|
|
52
|
+
https://js.intercomcdn.com https://logs-01.loggly.com https://cdn.segment.com
|
|
53
|
+
https://analytics.pgncs.notion.so https://o324374.ingest.sentry.io https://checkout.stripe.com
|
|
54
|
+
https://js.stripe.com https://embed.typeform.com https://admin.typeform.com
|
|
55
|
+
https://public.profitwell.com js.sentry-cdn.com https://js.chilipiper.com
|
|
56
|
+
https://platform.twitter.com https://cdn.syndication.twimg.com https://www.googletagmanager.com
|
|
57
|
+
https://x.clearbitjs.com https://client-registry.mutinycdn.com https://client.mutinycdn.com/
|
|
58
|
+
https://user-data.mutinycdn.com; connect-src ''self'' https://msgstore.www.notion.so
|
|
59
|
+
wss://msgstore.www.notion.so ws://localhost:* https://notion-emojis.s3-us-west-2.amazonaws.com
|
|
60
|
+
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
|
|
61
|
+
https: http: https://api.amplitude.com https://api.embed.ly https://js.intercomcdn.com
|
|
62
|
+
https://api-iam.intercom.io wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
|
|
63
|
+
https://cdn.segment.com https://api.segment.io https://analytics.pgncs.notion.so
|
|
64
|
+
https://api.pgncs.notion.so https://o324374.ingest.sentry.io https://checkout.stripe.com
|
|
65
|
+
https://js.stripe.com https://cdn.contentful.com https://preview.contentful.com
|
|
66
|
+
https://images.ctfassets.net https://www2.profitwell.com https://tracking.chilipiper.com
|
|
67
|
+
https://api.chilipiper.com https://api.unsplash.com https://boards-api.greenhouse.io
|
|
68
|
+
https://user-data.mutinycdn.com https://api-v2.mutinyhq.io https://api.statuspage.io
|
|
69
|
+
https://pgncd.notion.so; font-src ''self'' data: https://cdnjs.cloudflare.com
|
|
70
|
+
https://js.intercomcdn.com; img-src ''self'' data: blob: https: https://platform.twitter.com
|
|
71
|
+
https://syndication.twitter.com https://pbs.twimg.com https://ton.twimg.com
|
|
72
|
+
www.googletagmanager.com; style-src ''self'' ''unsafe-inline'' https://cdnjs.cloudflare.com
|
|
73
|
+
https://github.githubassets.com https://js.chilipiper.com https://platform.twitter.com
|
|
74
|
+
https://ton.twimg.com; frame-src https: http:; media-src https: http:'
|
|
75
|
+
X-Content-Security-Policy:
|
|
76
|
+
- 'script-src ''self'' ''unsafe-inline'' ''unsafe-eval'' https://gist.github.com
|
|
77
|
+
https://apis.google.com https://api.amplitude.com https://widget.intercom.io
|
|
78
|
+
https://js.intercomcdn.com https://logs-01.loggly.com https://cdn.segment.com
|
|
79
|
+
https://analytics.pgncs.notion.so https://o324374.ingest.sentry.io https://checkout.stripe.com
|
|
80
|
+
https://js.stripe.com https://embed.typeform.com https://admin.typeform.com
|
|
81
|
+
https://public.profitwell.com js.sentry-cdn.com https://js.chilipiper.com
|
|
82
|
+
https://platform.twitter.com https://cdn.syndication.twimg.com https://www.googletagmanager.com
|
|
83
|
+
https://x.clearbitjs.com https://client-registry.mutinycdn.com https://client.mutinycdn.com/
|
|
84
|
+
https://user-data.mutinycdn.com; connect-src ''self'' https://msgstore.www.notion.so
|
|
85
|
+
wss://msgstore.www.notion.so ws://localhost:* https://notion-emojis.s3-us-west-2.amazonaws.com
|
|
86
|
+
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
|
|
87
|
+
https: http: https://api.amplitude.com https://api.embed.ly https://js.intercomcdn.com
|
|
88
|
+
https://api-iam.intercom.io wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
|
|
89
|
+
https://cdn.segment.com https://api.segment.io https://analytics.pgncs.notion.so
|
|
90
|
+
https://api.pgncs.notion.so https://o324374.ingest.sentry.io https://checkout.stripe.com
|
|
91
|
+
https://js.stripe.com https://cdn.contentful.com https://preview.contentful.com
|
|
92
|
+
https://images.ctfassets.net https://www2.profitwell.com https://tracking.chilipiper.com
|
|
93
|
+
https://api.chilipiper.com https://api.unsplash.com https://boards-api.greenhouse.io
|
|
94
|
+
https://user-data.mutinycdn.com https://api-v2.mutinyhq.io https://api.statuspage.io
|
|
95
|
+
https://pgncd.notion.so; font-src ''self'' data: https://cdnjs.cloudflare.com
|
|
96
|
+
https://js.intercomcdn.com; img-src ''self'' data: blob: https: https://platform.twitter.com
|
|
97
|
+
https://syndication.twitter.com https://pbs.twimg.com https://ton.twimg.com
|
|
98
|
+
www.googletagmanager.com; style-src ''self'' ''unsafe-inline'' https://cdnjs.cloudflare.com
|
|
99
|
+
https://github.githubassets.com https://js.chilipiper.com https://platform.twitter.com
|
|
100
|
+
https://ton.twimg.com; frame-src https: http:; media-src https: http:'
|
|
101
|
+
X-Webkit-Csp:
|
|
102
|
+
- 'script-src ''self'' ''unsafe-inline'' ''unsafe-eval'' https://gist.github.com
|
|
103
|
+
https://apis.google.com https://api.amplitude.com https://widget.intercom.io
|
|
104
|
+
https://js.intercomcdn.com https://logs-01.loggly.com https://cdn.segment.com
|
|
105
|
+
https://analytics.pgncs.notion.so https://o324374.ingest.sentry.io https://checkout.stripe.com
|
|
106
|
+
https://js.stripe.com https://embed.typeform.com https://admin.typeform.com
|
|
107
|
+
https://public.profitwell.com js.sentry-cdn.com https://js.chilipiper.com
|
|
108
|
+
https://platform.twitter.com https://cdn.syndication.twimg.com https://www.googletagmanager.com
|
|
109
|
+
https://x.clearbitjs.com https://client-registry.mutinycdn.com https://client.mutinycdn.com/
|
|
110
|
+
https://user-data.mutinycdn.com; connect-src ''self'' https://msgstore.www.notion.so
|
|
111
|
+
wss://msgstore.www.notion.so ws://localhost:* 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://api.amplitude.com https://api.embed.ly https://js.intercomcdn.com
|
|
114
|
+
https://api-iam.intercom.io wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
|
|
115
|
+
https://cdn.segment.com https://api.segment.io https://analytics.pgncs.notion.so
|
|
116
|
+
https://api.pgncs.notion.so https://o324374.ingest.sentry.io https://checkout.stripe.com
|
|
117
|
+
https://js.stripe.com https://cdn.contentful.com https://preview.contentful.com
|
|
118
|
+
https://images.ctfassets.net https://www2.profitwell.com https://tracking.chilipiper.com
|
|
119
|
+
https://api.chilipiper.com https://api.unsplash.com https://boards-api.greenhouse.io
|
|
120
|
+
https://user-data.mutinycdn.com https://api-v2.mutinyhq.io https://api.statuspage.io
|
|
121
|
+
https://pgncd.notion.so; 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
|
+
www.googletagmanager.com; style-src ''self'' ''unsafe-inline'' https://cdnjs.cloudflare.com
|
|
125
|
+
https://github.githubassets.com https://js.chilipiper.com https://platform.twitter.com
|
|
126
|
+
https://ton.twimg.com; frame-src https: http:; media-src https: http:'
|
|
127
|
+
Set-Cookie:
|
|
128
|
+
- notion_browser_id=9b609b0b-5d6b-446e-9cff-3cac85a1f76d; Domain=www.notion.so;
|
|
129
|
+
Path=/; Expires=Wed, 07 May 2053 19:31:42 GMT; Secure
|
|
130
|
+
Etag:
|
|
131
|
+
- W/"1a9-KpgP0oaUKRBY/DiZAiRKYKqR5xg"
|
|
132
|
+
Vary:
|
|
133
|
+
- Accept-Encoding
|
|
134
|
+
Cf-Cache-Status:
|
|
135
|
+
- DYNAMIC
|
|
136
|
+
Expect-Ct:
|
|
137
|
+
- max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
|
|
138
|
+
Server:
|
|
139
|
+
- cloudflare
|
|
140
|
+
Cf-Ray:
|
|
141
|
+
- 68679738b8ac40c9-CDG
|
|
142
|
+
body:
|
|
143
|
+
encoding: UTF-8
|
|
144
|
+
string: '{"object":"block","id":"6e842658-eb3d-4ea9-9bbf-e86104151729","created_time":"2021-05-01T15:44:00.000Z","last_edited_time":"2021-08-29T17:45:00.000Z","has_children":false,"type":"to_do","to_do":{"rich_text":[{"type":"text","text":{"content":"A
|
|
145
|
+
todo","link":null},"annotations":{"bold":false,"italic":false,"strikethrough":false,"underline":false,"code":false,"color":"default"},"plain_text":"A
|
|
146
|
+
todo","href":null}],"checked":true}}'
|
|
147
|
+
recorded_at: Sun, 29 Aug 2021 17:45:02 GMT
|
|
148
|
+
recorded_with: VCR 6.0.0
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
---
|
|
2
|
+
http_interactions:
|
|
3
|
+
- request:
|
|
4
|
+
method: patch
|
|
5
|
+
uri: https://api.notion.com/v1/data_sources/6a91c56ebc5e46699e34952e09ec53c0
|
|
6
|
+
body:
|
|
7
|
+
encoding: UTF-8
|
|
8
|
+
string: "{\"title\":[{\"text\":{\"content\":\"Orbit \U0001F49C Notion\"}}]}"
|
|
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\":\"data_source\",\"id\":\"6a91c56e-bc5e-4669-9e34-952e09ec53c0\",\"created_time\":\"2025-09-03T17:48:00.000Z\",\"last_edited_time\":\"2025-09-03T17:48:01.000Z\",\"title\":[{\"type\":\"text\",\"text\":{\"content\":\"Orbit \U0001F49C Notion\",\"link\":null},\"annotations\":{\"bold\":false,\"italic\":false,\"strikethrough\":false,\"underline\":false,\"code\":false,\"color\":\"default\"},\"plain_text\":\"Orbit \U0001F49C Notion\",\"href\":null}],\"properties\":{\"Name\":{\"id\":\"title\",\"name\":\"Name\",\"type\":\"title\",\"title\":{}}},\"parent\":{\"type\":\"database_id\",\"database_id\":\"6a91c56e-bc5e-4669-9e34-952e09ec53c0\"}}"
|
|
28
|
+
recorded_at: Wed, 03 Sep 2025 17:48:01 GMT
|
|
29
|
+
recorded_with: VCR 6.0.0
|
|
@@ -0,0 +1,152 @@
|
|
|
1
|
+
---
|
|
2
|
+
http_interactions:
|
|
3
|
+
- request:
|
|
4
|
+
method: patch
|
|
5
|
+
uri: https://api.notion.com/v1/databases/dd428e9dd3fe4171870da7a1902c748b
|
|
6
|
+
body:
|
|
7
|
+
encoding: UTF-8
|
|
8
|
+
string: "{\"title\":[{\"text\":{\"content\":\"Orbit \U0001F49C Notion\"}}]}"
|
|
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
|
+
Accept-Encoding:
|
|
21
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
|
22
|
+
response:
|
|
23
|
+
status:
|
|
24
|
+
code: 200
|
|
25
|
+
message: OK
|
|
26
|
+
headers:
|
|
27
|
+
Date:
|
|
28
|
+
- Sun, 29 Aug 2021 17:48:02 GMT
|
|
29
|
+
Content-Type:
|
|
30
|
+
- application/json; charset=utf-8
|
|
31
|
+
Transfer-Encoding:
|
|
32
|
+
- chunked
|
|
33
|
+
Connection:
|
|
34
|
+
- keep-alive
|
|
35
|
+
X-Dns-Prefetch-Control:
|
|
36
|
+
- 'off'
|
|
37
|
+
X-Frame-Options:
|
|
38
|
+
- SAMEORIGIN
|
|
39
|
+
Strict-Transport-Security:
|
|
40
|
+
- max-age=5184000; includeSubDomains
|
|
41
|
+
X-Download-Options:
|
|
42
|
+
- noopen
|
|
43
|
+
X-Content-Type-Options:
|
|
44
|
+
- nosniff
|
|
45
|
+
X-Xss-Protection:
|
|
46
|
+
- 1; mode=block
|
|
47
|
+
Referrer-Policy:
|
|
48
|
+
- same-origin
|
|
49
|
+
Content-Security-Policy:
|
|
50
|
+
- 'script-src ''self'' ''unsafe-inline'' ''unsafe-eval'' https://gist.github.com
|
|
51
|
+
https://apis.google.com https://api.amplitude.com https://widget.intercom.io
|
|
52
|
+
https://js.intercomcdn.com https://logs-01.loggly.com https://cdn.segment.com
|
|
53
|
+
https://analytics.pgncs.notion.so https://o324374.ingest.sentry.io https://checkout.stripe.com
|
|
54
|
+
https://js.stripe.com https://embed.typeform.com https://admin.typeform.com
|
|
55
|
+
https://public.profitwell.com js.sentry-cdn.com https://js.chilipiper.com
|
|
56
|
+
https://platform.twitter.com https://cdn.syndication.twimg.com https://www.googletagmanager.com
|
|
57
|
+
https://x.clearbitjs.com https://client-registry.mutinycdn.com https://client.mutinycdn.com/
|
|
58
|
+
https://user-data.mutinycdn.com; connect-src ''self'' https://msgstore.www.notion.so
|
|
59
|
+
wss://msgstore.www.notion.so ws://localhost:* https://notion-emojis.s3-us-west-2.amazonaws.com
|
|
60
|
+
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
|
|
61
|
+
https: http: https://api.amplitude.com https://api.embed.ly https://js.intercomcdn.com
|
|
62
|
+
https://api-iam.intercom.io wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
|
|
63
|
+
https://cdn.segment.com https://api.segment.io https://analytics.pgncs.notion.so
|
|
64
|
+
https://api.pgncs.notion.so https://o324374.ingest.sentry.io https://checkout.stripe.com
|
|
65
|
+
https://js.stripe.com https://cdn.contentful.com https://preview.contentful.com
|
|
66
|
+
https://images.ctfassets.net https://www2.profitwell.com https://tracking.chilipiper.com
|
|
67
|
+
https://api.chilipiper.com https://api.unsplash.com https://boards-api.greenhouse.io
|
|
68
|
+
https://user-data.mutinycdn.com https://api-v2.mutinyhq.io https://api.statuspage.io
|
|
69
|
+
https://pgncd.notion.so; font-src ''self'' data: https://cdnjs.cloudflare.com
|
|
70
|
+
https://js.intercomcdn.com; img-src ''self'' data: blob: https: https://platform.twitter.com
|
|
71
|
+
https://syndication.twitter.com https://pbs.twimg.com https://ton.twimg.com
|
|
72
|
+
www.googletagmanager.com; style-src ''self'' ''unsafe-inline'' https://cdnjs.cloudflare.com
|
|
73
|
+
https://github.githubassets.com https://js.chilipiper.com https://platform.twitter.com
|
|
74
|
+
https://ton.twimg.com; frame-src https: http:; media-src https: http:'
|
|
75
|
+
X-Content-Security-Policy:
|
|
76
|
+
- 'script-src ''self'' ''unsafe-inline'' ''unsafe-eval'' https://gist.github.com
|
|
77
|
+
https://apis.google.com https://api.amplitude.com https://widget.intercom.io
|
|
78
|
+
https://js.intercomcdn.com https://logs-01.loggly.com https://cdn.segment.com
|
|
79
|
+
https://analytics.pgncs.notion.so https://o324374.ingest.sentry.io https://checkout.stripe.com
|
|
80
|
+
https://js.stripe.com https://embed.typeform.com https://admin.typeform.com
|
|
81
|
+
https://public.profitwell.com js.sentry-cdn.com https://js.chilipiper.com
|
|
82
|
+
https://platform.twitter.com https://cdn.syndication.twimg.com https://www.googletagmanager.com
|
|
83
|
+
https://x.clearbitjs.com https://client-registry.mutinycdn.com https://client.mutinycdn.com/
|
|
84
|
+
https://user-data.mutinycdn.com; connect-src ''self'' https://msgstore.www.notion.so
|
|
85
|
+
wss://msgstore.www.notion.so ws://localhost:* https://notion-emojis.s3-us-west-2.amazonaws.com
|
|
86
|
+
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
|
|
87
|
+
https: http: https://api.amplitude.com https://api.embed.ly https://js.intercomcdn.com
|
|
88
|
+
https://api-iam.intercom.io wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
|
|
89
|
+
https://cdn.segment.com https://api.segment.io https://analytics.pgncs.notion.so
|
|
90
|
+
https://api.pgncs.notion.so https://o324374.ingest.sentry.io https://checkout.stripe.com
|
|
91
|
+
https://js.stripe.com https://cdn.contentful.com https://preview.contentful.com
|
|
92
|
+
https://images.ctfassets.net https://www2.profitwell.com https://tracking.chilipiper.com
|
|
93
|
+
https://api.chilipiper.com https://api.unsplash.com https://boards-api.greenhouse.io
|
|
94
|
+
https://user-data.mutinycdn.com https://api-v2.mutinyhq.io https://api.statuspage.io
|
|
95
|
+
https://pgncd.notion.so; font-src ''self'' data: https://cdnjs.cloudflare.com
|
|
96
|
+
https://js.intercomcdn.com; img-src ''self'' data: blob: https: https://platform.twitter.com
|
|
97
|
+
https://syndication.twitter.com https://pbs.twimg.com https://ton.twimg.com
|
|
98
|
+
www.googletagmanager.com; style-src ''self'' ''unsafe-inline'' https://cdnjs.cloudflare.com
|
|
99
|
+
https://github.githubassets.com https://js.chilipiper.com https://platform.twitter.com
|
|
100
|
+
https://ton.twimg.com; frame-src https: http:; media-src https: http:'
|
|
101
|
+
X-Webkit-Csp:
|
|
102
|
+
- 'script-src ''self'' ''unsafe-inline'' ''unsafe-eval'' https://gist.github.com
|
|
103
|
+
https://apis.google.com https://api.amplitude.com https://widget.intercom.io
|
|
104
|
+
https://js.intercomcdn.com https://logs-01.loggly.com https://cdn.segment.com
|
|
105
|
+
https://analytics.pgncs.notion.so https://o324374.ingest.sentry.io https://checkout.stripe.com
|
|
106
|
+
https://js.stripe.com https://embed.typeform.com https://admin.typeform.com
|
|
107
|
+
https://public.profitwell.com js.sentry-cdn.com https://js.chilipiper.com
|
|
108
|
+
https://platform.twitter.com https://cdn.syndication.twimg.com https://www.googletagmanager.com
|
|
109
|
+
https://x.clearbitjs.com https://client-registry.mutinycdn.com https://client.mutinycdn.com/
|
|
110
|
+
https://user-data.mutinycdn.com; connect-src ''self'' https://msgstore.www.notion.so
|
|
111
|
+
wss://msgstore.www.notion.so ws://localhost:* 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://api.amplitude.com https://api.embed.ly https://js.intercomcdn.com
|
|
114
|
+
https://api-iam.intercom.io wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
|
|
115
|
+
https://cdn.segment.com https://api.segment.io https://analytics.pgncs.notion.so
|
|
116
|
+
https://api.pgncs.notion.so https://o324374.ingest.sentry.io https://checkout.stripe.com
|
|
117
|
+
https://js.stripe.com https://cdn.contentful.com https://preview.contentful.com
|
|
118
|
+
https://images.ctfassets.net https://www2.profitwell.com https://tracking.chilipiper.com
|
|
119
|
+
https://api.chilipiper.com https://api.unsplash.com https://boards-api.greenhouse.io
|
|
120
|
+
https://user-data.mutinycdn.com https://api-v2.mutinyhq.io https://api.statuspage.io
|
|
121
|
+
https://pgncd.notion.so; 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
|
+
www.googletagmanager.com; style-src ''self'' ''unsafe-inline'' https://cdnjs.cloudflare.com
|
|
125
|
+
https://github.githubassets.com https://js.chilipiper.com https://platform.twitter.com
|
|
126
|
+
https://ton.twimg.com; frame-src https: http:; media-src https: http:'
|
|
127
|
+
Set-Cookie:
|
|
128
|
+
- notion_browser_id=6a643b78-3b33-4efa-b419-afbd30da2f6e; Domain=www.notion.so;
|
|
129
|
+
Path=/; Expires=Wed, 07 May 2053 19:34:42 GMT; Secure
|
|
130
|
+
Etag:
|
|
131
|
+
- W/"3a6-+7yCJm5S35XfYPO/FbqE3H7jEno"
|
|
132
|
+
Vary:
|
|
133
|
+
- Accept-Encoding
|
|
134
|
+
Cf-Cache-Status:
|
|
135
|
+
- DYNAMIC
|
|
136
|
+
Expect-Ct:
|
|
137
|
+
- max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
|
|
138
|
+
Server:
|
|
139
|
+
- cloudflare
|
|
140
|
+
Cf-Ray:
|
|
141
|
+
- 68679b9e8fe63ae3-CDG
|
|
142
|
+
body:
|
|
143
|
+
encoding: UTF-8
|
|
144
|
+
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
|
|
145
|
+
\U0001F49C Notion\",\"link\":null},\"annotations\":{\"bold\":false,\"italic\":false,\"strikethrough\":false,\"underline\":false,\"code\":false,\"color\":\"default\"},\"plain_text\":\"Orbit
|
|
146
|
+
\U0001F49C Notion\",\"href\":null}],\"properties\":{\"Orbit Status\":{\"id\":\"%3DadK\",\"name\":\"Orbit
|
|
147
|
+
Status\",\"type\":\"rich_text\",\"rich_text\":{}},\"Orbit Note URL\":{\"id\":\"L%3AsP\",\"name\":\"Orbit
|
|
148
|
+
Note URL\",\"type\":\"url\",\"url\":{}},\"Member Email\":{\"id\":\"%5BIFC\",\"name\":\"Member
|
|
149
|
+
Email\",\"type\":\"email\",\"email\":{}},\"Send to Orbit\":{\"id\":\"%5EoR%3F\",\"name\":\"Send
|
|
150
|
+
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}}"
|
|
151
|
+
recorded_at: Sun, 29 Aug 2021 17:48:02 GMT
|
|
152
|
+
recorded_with: VCR 6.0.0
|
|
@@ -0,0 +1,152 @@
|
|
|
1
|
+
---
|
|
2
|
+
http_interactions:
|
|
3
|
+
- request:
|
|
4
|
+
method: patch
|
|
5
|
+
uri: https://api.notion.com/v1/pages/c7fd1abe-8114-44ea-be77-9632ea33e581
|
|
6
|
+
body:
|
|
7
|
+
encoding: UTF-8
|
|
8
|
+
string: '{"properties":{"Name":[{"text":{"content":"Nicolas Goutay"}}]}}'
|
|
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
|
+
Accept-Encoding:
|
|
21
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
|
22
|
+
response:
|
|
23
|
+
status:
|
|
24
|
+
code: 200
|
|
25
|
+
message: OK
|
|
26
|
+
headers:
|
|
27
|
+
Date:
|
|
28
|
+
- Sun, 29 Aug 2021 17:50:21 GMT
|
|
29
|
+
Content-Type:
|
|
30
|
+
- application/json; charset=utf-8
|
|
31
|
+
Transfer-Encoding:
|
|
32
|
+
- chunked
|
|
33
|
+
Connection:
|
|
34
|
+
- keep-alive
|
|
35
|
+
X-Dns-Prefetch-Control:
|
|
36
|
+
- 'off'
|
|
37
|
+
X-Frame-Options:
|
|
38
|
+
- SAMEORIGIN
|
|
39
|
+
Strict-Transport-Security:
|
|
40
|
+
- max-age=5184000; includeSubDomains
|
|
41
|
+
X-Download-Options:
|
|
42
|
+
- noopen
|
|
43
|
+
X-Content-Type-Options:
|
|
44
|
+
- nosniff
|
|
45
|
+
X-Xss-Protection:
|
|
46
|
+
- 1; mode=block
|
|
47
|
+
Referrer-Policy:
|
|
48
|
+
- same-origin
|
|
49
|
+
Content-Security-Policy:
|
|
50
|
+
- 'script-src ''self'' ''unsafe-inline'' ''unsafe-eval'' https://gist.github.com
|
|
51
|
+
https://apis.google.com https://api.amplitude.com https://widget.intercom.io
|
|
52
|
+
https://js.intercomcdn.com https://logs-01.loggly.com https://cdn.segment.com
|
|
53
|
+
https://analytics.pgncs.notion.so https://o324374.ingest.sentry.io https://checkout.stripe.com
|
|
54
|
+
https://js.stripe.com https://embed.typeform.com https://admin.typeform.com
|
|
55
|
+
https://public.profitwell.com js.sentry-cdn.com https://js.chilipiper.com
|
|
56
|
+
https://platform.twitter.com https://cdn.syndication.twimg.com https://www.googletagmanager.com
|
|
57
|
+
https://x.clearbitjs.com https://client-registry.mutinycdn.com https://client.mutinycdn.com/
|
|
58
|
+
https://user-data.mutinycdn.com; connect-src ''self'' https://msgstore.www.notion.so
|
|
59
|
+
wss://msgstore.www.notion.so ws://localhost:* https://notion-emojis.s3-us-west-2.amazonaws.com
|
|
60
|
+
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
|
|
61
|
+
https: http: https://api.amplitude.com https://api.embed.ly https://js.intercomcdn.com
|
|
62
|
+
https://api-iam.intercom.io wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
|
|
63
|
+
https://cdn.segment.com https://api.segment.io https://analytics.pgncs.notion.so
|
|
64
|
+
https://api.pgncs.notion.so https://o324374.ingest.sentry.io https://checkout.stripe.com
|
|
65
|
+
https://js.stripe.com https://cdn.contentful.com https://preview.contentful.com
|
|
66
|
+
https://images.ctfassets.net https://www2.profitwell.com https://tracking.chilipiper.com
|
|
67
|
+
https://api.chilipiper.com https://api.unsplash.com https://boards-api.greenhouse.io
|
|
68
|
+
https://user-data.mutinycdn.com https://api-v2.mutinyhq.io https://api.statuspage.io
|
|
69
|
+
https://pgncd.notion.so; font-src ''self'' data: https://cdnjs.cloudflare.com
|
|
70
|
+
https://js.intercomcdn.com; img-src ''self'' data: blob: https: https://platform.twitter.com
|
|
71
|
+
https://syndication.twitter.com https://pbs.twimg.com https://ton.twimg.com
|
|
72
|
+
www.googletagmanager.com; style-src ''self'' ''unsafe-inline'' https://cdnjs.cloudflare.com
|
|
73
|
+
https://github.githubassets.com https://js.chilipiper.com https://platform.twitter.com
|
|
74
|
+
https://ton.twimg.com; frame-src https: http:; media-src https: http:'
|
|
75
|
+
X-Content-Security-Policy:
|
|
76
|
+
- 'script-src ''self'' ''unsafe-inline'' ''unsafe-eval'' https://gist.github.com
|
|
77
|
+
https://apis.google.com https://api.amplitude.com https://widget.intercom.io
|
|
78
|
+
https://js.intercomcdn.com https://logs-01.loggly.com https://cdn.segment.com
|
|
79
|
+
https://analytics.pgncs.notion.so https://o324374.ingest.sentry.io https://checkout.stripe.com
|
|
80
|
+
https://js.stripe.com https://embed.typeform.com https://admin.typeform.com
|
|
81
|
+
https://public.profitwell.com js.sentry-cdn.com https://js.chilipiper.com
|
|
82
|
+
https://platform.twitter.com https://cdn.syndication.twimg.com https://www.googletagmanager.com
|
|
83
|
+
https://x.clearbitjs.com https://client-registry.mutinycdn.com https://client.mutinycdn.com/
|
|
84
|
+
https://user-data.mutinycdn.com; connect-src ''self'' https://msgstore.www.notion.so
|
|
85
|
+
wss://msgstore.www.notion.so ws://localhost:* https://notion-emojis.s3-us-west-2.amazonaws.com
|
|
86
|
+
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
|
|
87
|
+
https: http: https://api.amplitude.com https://api.embed.ly https://js.intercomcdn.com
|
|
88
|
+
https://api-iam.intercom.io wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
|
|
89
|
+
https://cdn.segment.com https://api.segment.io https://analytics.pgncs.notion.so
|
|
90
|
+
https://api.pgncs.notion.so https://o324374.ingest.sentry.io https://checkout.stripe.com
|
|
91
|
+
https://js.stripe.com https://cdn.contentful.com https://preview.contentful.com
|
|
92
|
+
https://images.ctfassets.net https://www2.profitwell.com https://tracking.chilipiper.com
|
|
93
|
+
https://api.chilipiper.com https://api.unsplash.com https://boards-api.greenhouse.io
|
|
94
|
+
https://user-data.mutinycdn.com https://api-v2.mutinyhq.io https://api.statuspage.io
|
|
95
|
+
https://pgncd.notion.so; font-src ''self'' data: https://cdnjs.cloudflare.com
|
|
96
|
+
https://js.intercomcdn.com; img-src ''self'' data: blob: https: https://platform.twitter.com
|
|
97
|
+
https://syndication.twitter.com https://pbs.twimg.com https://ton.twimg.com
|
|
98
|
+
www.googletagmanager.com; style-src ''self'' ''unsafe-inline'' https://cdnjs.cloudflare.com
|
|
99
|
+
https://github.githubassets.com https://js.chilipiper.com https://platform.twitter.com
|
|
100
|
+
https://ton.twimg.com; frame-src https: http:; media-src https: http:'
|
|
101
|
+
X-Webkit-Csp:
|
|
102
|
+
- 'script-src ''self'' ''unsafe-inline'' ''unsafe-eval'' https://gist.github.com
|
|
103
|
+
https://apis.google.com https://api.amplitude.com https://widget.intercom.io
|
|
104
|
+
https://js.intercomcdn.com https://logs-01.loggly.com https://cdn.segment.com
|
|
105
|
+
https://analytics.pgncs.notion.so https://o324374.ingest.sentry.io https://checkout.stripe.com
|
|
106
|
+
https://js.stripe.com https://embed.typeform.com https://admin.typeform.com
|
|
107
|
+
https://public.profitwell.com js.sentry-cdn.com https://js.chilipiper.com
|
|
108
|
+
https://platform.twitter.com https://cdn.syndication.twimg.com https://www.googletagmanager.com
|
|
109
|
+
https://x.clearbitjs.com https://client-registry.mutinycdn.com https://client.mutinycdn.com/
|
|
110
|
+
https://user-data.mutinycdn.com; connect-src ''self'' https://msgstore.www.notion.so
|
|
111
|
+
wss://msgstore.www.notion.so ws://localhost:* 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://api.amplitude.com https://api.embed.ly https://js.intercomcdn.com
|
|
114
|
+
https://api-iam.intercom.io wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com
|
|
115
|
+
https://cdn.segment.com https://api.segment.io https://analytics.pgncs.notion.so
|
|
116
|
+
https://api.pgncs.notion.so https://o324374.ingest.sentry.io https://checkout.stripe.com
|
|
117
|
+
https://js.stripe.com https://cdn.contentful.com https://preview.contentful.com
|
|
118
|
+
https://images.ctfassets.net https://www2.profitwell.com https://tracking.chilipiper.com
|
|
119
|
+
https://api.chilipiper.com https://api.unsplash.com https://boards-api.greenhouse.io
|
|
120
|
+
https://user-data.mutinycdn.com https://api-v2.mutinyhq.io https://api.statuspage.io
|
|
121
|
+
https://pgncd.notion.so; 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
|
+
www.googletagmanager.com; style-src ''self'' ''unsafe-inline'' https://cdnjs.cloudflare.com
|
|
125
|
+
https://github.githubassets.com https://js.chilipiper.com https://platform.twitter.com
|
|
126
|
+
https://ton.twimg.com; frame-src https: http:; media-src https: http:'
|
|
127
|
+
Set-Cookie:
|
|
128
|
+
- notion_browser_id=2c532044-d331-4ed3-96af-9149d054185c; Domain=www.notion.so;
|
|
129
|
+
Path=/; Expires=Wed, 07 May 2053 19:37:01 GMT; Secure
|
|
130
|
+
Etag:
|
|
131
|
+
- W/"4b0-rkZ89rDxahb2+CfzhhuDlK0lPN0"
|
|
132
|
+
Vary:
|
|
133
|
+
- Accept-Encoding
|
|
134
|
+
Cf-Cache-Status:
|
|
135
|
+
- DYNAMIC
|
|
136
|
+
Expect-Ct:
|
|
137
|
+
- max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
|
|
138
|
+
Server:
|
|
139
|
+
- cloudflare
|
|
140
|
+
Cf-Ray:
|
|
141
|
+
- 68679f039b480820-CDG
|
|
142
|
+
body:
|
|
143
|
+
encoding: UTF-8
|
|
144
|
+
string: '{"object":"page","id":"c7fd1abe-8114-44ea-be77-9632ea33e581","created_time":"2021-04-30T07:49:00.000Z","last_edited_time":"2021-08-29T17:50:00.000Z","cover":null,"icon":null,"parent":{"type":"database_id","database_id":"dd428e9d-d3fe-4171-870d-a7a1902c748b"},"archived":false,"properties":{"Orbit
|
|
145
|
+
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
|
|
146
|
+
Note URL":{"id":"L%3AsP","type":"url","url":"https://app.orbit.love/orbit/members/phacks3?type=notes"},"Member
|
|
147
|
+
Email":{"id":"%5BIFC","type":"email","email":"nicolas@orbit.love"},"Send to
|
|
148
|
+
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
|
|
149
|
+
Goutay","link":null},"annotations":{"bold":false,"italic":false,"strikethrough":false,"underline":false,"code":false,"color":"default"},"plain_text":"Nicolas
|
|
150
|
+
Goutay","href":null}]}},"url":"https://www.notion.so/Nicolas-Goutay-c7fd1abe811444eabe779632ea33e581"}'
|
|
151
|
+
recorded_at: Sun, 29 Aug 2021 17:50:21 GMT
|
|
152
|
+
recorded_with: VCR 6.0.0
|