ruby-trello 2.3.1 → 3.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +49 -23
- data/lib/trello/action.rb +27 -21
- data/lib/trello/attachment.rb +40 -27
- data/lib/trello/basic_data.rb +104 -9
- data/lib/trello/board.rb +88 -102
- data/lib/trello/card.rb +34 -235
- data/lib/trello/checklist.rb +17 -71
- data/lib/trello/client.rb +1 -1
- data/lib/trello/comment.rb +39 -26
- data/lib/trello/configuration.rb +8 -0
- data/lib/trello/cover_image.rb +20 -0
- data/lib/trello/custom_field.rb +31 -84
- data/lib/trello/custom_field_item.rb +36 -58
- data/lib/trello/custom_field_option.rb +40 -13
- data/lib/trello/item.rb +27 -16
- data/lib/trello/item_state.rb +7 -15
- data/lib/trello/json_utils.rb +11 -5
- data/lib/trello/label.rb +14 -101
- data/lib/trello/label_name.rb +22 -25
- data/lib/trello/list.rb +31 -44
- data/lib/trello/member.rb +77 -32
- data/lib/trello/net/faraday.rb +46 -0
- data/lib/trello/net/rest_client.rb +41 -0
- data/lib/trello/net.rb +1 -28
- data/lib/trello/notification.rb +27 -20
- data/lib/trello/organization.rb +53 -25
- data/lib/trello/plugin_datum.rb +11 -16
- data/lib/trello/schema/attribute/base.rb +79 -0
- data/lib/trello/schema/attribute/board_pref.rb +45 -0
- data/lib/trello/schema/attribute/custom_field_display.rb +45 -0
- data/lib/trello/schema/attribute/default.rb +45 -0
- data/lib/trello/schema/attribute_builder.rb +42 -0
- data/lib/trello/schema/attribute_registration.rb +47 -0
- data/lib/trello/schema/serializer/default.rb +17 -0
- data/lib/trello/schema/serializer/labels.rb +23 -0
- data/lib/trello/schema/serializer/time.rb +25 -0
- data/lib/trello/schema/serializer/webhooks.rb +25 -0
- data/lib/trello/schema.rb +31 -0
- data/lib/trello/token.rb +15 -12
- data/lib/trello/webhook.rb +18 -71
- data/lib/trello.rb +62 -7
- data/spec/action_spec.rb +1 -2
- data/spec/board_spec.rb +43 -103
- data/spec/card_spec.rb +51 -50
- data/spec/cassettes/action_find_with_id_and_get_all_fields.yml +104 -0
- data/spec/cassettes/board_find_with_id_and_get_all_fields.yml +96 -0
- data/spec/cassettes/board_find_with_id_and_get_specific_fields.yml +96 -0
- data/spec/cassettes/can_add_a_member_to_a_board.yml +191 -0
- data/spec/cassettes/can_arvhice_all_cards_of_list.yml +397 -0
- data/spec/cassettes/can_get_actions_of_board.yml +188 -0
- data/spec/cassettes/can_get_actions_of_list.yml +202 -0
- data/spec/cassettes/can_get_actions_of_members.yml +199 -0
- data/spec/cassettes/can_get_actions_of_organization.yml +201 -0
- data/spec/cassettes/can_get_boards_of_custom_field.yml +198 -0
- data/spec/cassettes/can_get_boards_of_label.yml +197 -0
- data/spec/cassettes/can_get_boards_of_organization.yml +207 -0
- data/spec/cassettes/can_get_cards_of_board.yml +193 -0
- data/spec/cassettes/can_get_cards_of_list.yml +201 -0
- data/spec/cassettes/can_get_cards_of_member.yml +204 -0
- data/spec/cassettes/can_get_checklists_of_board.yml +187 -0
- data/spec/cassettes/can_get_comments_board.yml +109 -0
- data/spec/cassettes/can_get_comments_card.yml +111 -0
- data/spec/cassettes/can_get_comments_list.yml +109 -0
- data/spec/cassettes/can_get_custom_field_options_of_custom_field.yml +197 -0
- data/spec/cassettes/can_get_custom_fields_of_board.yml +187 -0
- data/spec/cassettes/can_get_label_names_of_board.yml +187 -0
- data/spec/cassettes/can_get_labels_of_board.yml +187 -0
- data/spec/cassettes/can_get_lists_of_board.yml +187 -0
- data/spec/cassettes/can_get_members_of_board.yml +188 -0
- data/spec/cassettes/can_get_members_of_organization.yml +200 -0
- data/spec/cassettes/can_get_notifications_of_member.yml +199 -0
- data/spec/cassettes/can_get_organization_of_board.yml +189 -0
- data/spec/cassettes/can_get_organizations_of_member.yml +203 -0
- data/spec/cassettes/can_get_plugin_data_of_board.yml +187 -0
- data/spec/cassettes/can_move_all_cards_to_another_list.yml +886 -0
- data/spec/cassettes/can_success_create_a_board.yml +98 -0
- data/spec/cassettes/can_success_create_a_board_with_full_parameters.yml +97 -0
- data/spec/cassettes/can_success_create_a_board_without_clone_from_other.yml +98 -0
- data/spec/cassettes/can_success_create_a_card_when_due_is_datetime.yml +98 -0
- data/spec/cassettes/can_success_create_a_card_when_due_is_time.yml +98 -0
- data/spec/cassettes/can_success_create_a_checklist.yml +102 -0
- data/spec/cassettes/can_success_create_a_custom_field.yml +102 -0
- data/spec/cassettes/can_success_create_a_custom_field_option.yml +102 -0
- data/spec/cassettes/can_success_create_a_label.yml +102 -0
- data/spec/cassettes/can_success_create_a_list.yml +102 -0
- data/spec/cassettes/can_success_create_a_list_with_full_parameters.yml +102 -0
- data/spec/cassettes/can_success_create_a_organization.yml +104 -0
- data/spec/cassettes/can_success_create_a_webhook.yml +102 -0
- data/spec/cassettes/can_success_delete_a_custom_field_option.yml +389 -0
- data/spec/cassettes/can_success_delete_checklist.yml +284 -0
- data/spec/cassettes/can_success_get_card_of_board_by_card_id.yml +188 -0
- data/spec/cassettes/can_success_remove_member_from_board.yml +186 -0
- data/spec/cassettes/can_success_return_all_boards_of_current_user.yml +195 -0
- data/spec/cassettes/can_success_upate_a_board.yml +191 -0
- data/spec/cassettes/can_success_upate_a_list.yml +296 -0
- data/spec/cassettes/can_success_update_bong_a_board.yml +39 -39
- data/spec/cassettes/can_success_update_bong_a_board_with_specific_fields.yml +284 -0
- data/spec/cassettes/can_success_update_bong_a_checklist_with_specific_fields.yml +296 -0
- data/spec/cassettes/can_success_update_bong_a_custom_field.yml +200 -0
- data/spec/cassettes/can_success_update_bong_a_label.yml +200 -0
- data/spec/cassettes/can_success_update_bong_a_list.yml +199 -0
- data/spec/cassettes/can_success_update_bong_a_list_with_specific_fields.yml +296 -0
- data/spec/cassettes/can_success_update_bong_a_organization.yml +203 -0
- data/spec/cassettes/can_success_update_bong_a_webhook.yml +296 -0
- data/spec/cassettes/checklist_can_add_an_item.yml +296 -0
- data/spec/cassettes/checklist_can_update_the_item_state.yml +296 -0
- data/spec/cassettes/checklist_find_with_id_and_get_all_fields.yml +100 -0
- data/spec/cassettes/comment_delete.yml +331 -0
- data/spec/cassettes/comment_find_with_id.yml +116 -0
- data/spec/cassettes/custom_field_find_with_id_and_get_all_fields.yml +100 -0
- data/spec/cassettes/custom_field_find_with_id_and_get_specific_fields.yml +100 -0
- data/spec/cassettes/custom_field_item_save_1.yml +1 -1
- data/spec/cassettes/custom_field_item_save_2.yml +1 -1
- data/spec/cassettes/custom_field_option_find_with_id.yml +100 -0
- data/spec/cassettes/get_board_of_list.yml +197 -0
- data/spec/cassettes/get_boards_of_member.yml +207 -0
- data/spec/cassettes/label_delete.yml +285 -0
- data/spec/cassettes/label_find_with_id.yml +100 -0
- data/spec/cassettes/list_find_with_id_and_get_all_fields.yml +100 -0
- data/spec/cassettes/list_find_with_id_and_get_specific_fields.yml +100 -0
- data/spec/cassettes/member_find_with_id_and_get_all_fields.yml +101 -0
- data/spec/cassettes/member_find_with_id_and_get_specific_fields.yml +100 -0
- data/spec/cassettes/notification_find_with_id.yml +103 -0
- data/spec/cassettes/organization_find_with_id_and_get_all_fields.yml +102 -0
- data/spec/cassettes/organization_find_with_id_and_get_specific_fields.yml +100 -0
- data/spec/cassettes/token_find_with_token_string.yml +100 -0
- data/spec/cassettes/webhook_delete.yml +286 -0
- data/spec/cassettes/webhook_find_with_id.yml +100 -0
- data/spec/checklist_spec.rb +27 -43
- data/spec/client_spec.rb +57 -3
- data/spec/configuration_spec.rb +13 -0
- data/spec/custom_field_item_spec.rb +2 -2
- data/spec/custom_field_option_spec.rb +2 -2
- data/spec/custom_field_spec.rb +25 -13
- data/spec/integration/action/find_spec.rb +23 -0
- data/spec/integration/basic_data/many_spec.rb +4 -0
- data/spec/integration/basic_data/schema_spec.rb +156 -0
- data/spec/integration/board/add_member_spec.rb +20 -0
- data/spec/integration/board/all_spec.rb +20 -0
- data/spec/integration/board/associations/actions_spec.rb +18 -0
- data/spec/integration/board/associations/cards_spec.rb +18 -0
- data/spec/integration/board/associations/checklists_spec.rb +18 -0
- data/spec/integration/board/associations/custom_fields_spec.rb +18 -0
- data/spec/integration/board/associations/label_names_spec.rb +17 -0
- data/spec/integration/board/associations/labels_spec.rb +18 -0
- data/spec/integration/board/associations/lists_spec.rb +18 -0
- data/spec/integration/board/associations/members_spec.rb +18 -0
- data/spec/integration/board/associations/organization_spec.rb +19 -0
- data/spec/integration/board/associations/plugin_data_spec.rb +18 -0
- data/spec/integration/board/create_spec.rb +95 -0
- data/spec/integration/board/find_card_spec.rb +18 -0
- data/spec/integration/board/find_spec.rb +42 -0
- data/spec/integration/board/remove_member_spec.rb +21 -0
- data/spec/integration/board/save_spec.rb +37 -0
- data/spec/integration/board/update!_spec.rb +33 -2
- data/spec/integration/card/associations/plugin_data_spec.rb +1 -1
- data/spec/integration/card/create_spec.rb +36 -2
- data/spec/integration/card/delete_spec.rb +2 -2
- data/spec/integration/card/find_spec.rb +1 -1
- data/spec/integration/card/save_spec.rb +2 -2
- data/spec/integration/checklist/add_item_spec.rb +20 -0
- data/spec/integration/checklist/create_spec.rb +23 -0
- data/spec/integration/checklist/delete_spec.rb +17 -0
- data/spec/integration/checklist/find_spec.rb +22 -0
- data/spec/integration/checklist/update!_spec.rb +21 -0
- data/spec/integration/checklist/update_item_state_spec.rb +20 -0
- data/spec/integration/comment/association/board_spec.rb +17 -0
- data/spec/integration/comment/association/card_spec.rb +17 -0
- data/spec/integration/comment/association/list_spec.rb +17 -0
- data/spec/integration/comment/delete_spec.rb +20 -0
- data/spec/integration/comment/find_spec.rb +17 -0
- data/spec/integration/custom_field/association/board_spec.rb +18 -0
- data/spec/integration/custom_field/association/custom_field_options_spec.rb +18 -0
- data/spec/integration/custom_field/create_spec.rb +29 -0
- data/spec/integration/custom_field/find_spec.rb +41 -0
- data/spec/integration/custom_field/update!_spec.rb +25 -0
- data/spec/integration/custom_field_option/create_spec.rb +23 -0
- data/spec/integration/custom_field_option/delete_spec.rb +19 -0
- data/spec/integration/custom_field_option/find_spec.rb +21 -0
- data/spec/integration/integration_test.rb +3 -3
- data/spec/integration/label/association/board_spec.rb +18 -0
- data/spec/integration/label/create_spec.rb +23 -0
- data/spec/integration/label/delete_spec.rb +21 -0
- data/spec/integration/label/find_spec.rb +20 -0
- data/spec/integration/label/update!_spec.rb +25 -0
- data/spec/integration/list/archive_all_cards_spec.rb +20 -0
- data/spec/integration/list/associations/actions_spec.rb +18 -0
- data/spec/integration/list/associations/board_spec.rb +18 -0
- data/spec/integration/list/associations/cards_spec.rb +18 -0
- data/spec/integration/list/create_spec.rb +44 -0
- data/spec/integration/list/find_spec.rb +37 -0
- data/spec/integration/list/move_all_cards_spec.rb +31 -0
- data/spec/integration/list/save_spec.rb +40 -0
- data/spec/integration/list/update!_spec.rb +43 -0
- data/spec/integration/member/associations/actions_spec.rb +17 -0
- data/spec/integration/member/associations/boards_spec.rb +18 -0
- data/spec/integration/member/associations/cards_spec.rb +18 -0
- data/spec/integration/member/associations/notifications_spec.rb +18 -0
- data/spec/integration/member/associations/organizations_spec.rb +18 -0
- data/spec/integration/member/find_spec.rb +39 -0
- data/spec/integration/member/update!_spec.rb +18 -0
- data/spec/integration/notification/find_spec.rb +27 -0
- data/spec/integration/organization/associations/actions_spec.rb +18 -0
- data/spec/integration/organization/associations/boards_spec.rb +18 -0
- data/spec/integration/organization/associations/members_spec.rb +18 -0
- data/spec/integration/organization/create_spec.rb +23 -0
- data/spec/integration/organization/find_spec.rb +37 -0
- data/spec/integration/organization/update!_spec.rb +28 -0
- data/spec/integration/token/find_spec.rb +24 -0
- data/spec/integration/webhook/create_spec.rb +27 -0
- data/spec/integration/webhook/delete_spec.rb +21 -0
- data/spec/integration/webhook/find_spec.rb +22 -0
- data/spec/integration/webhook/update!_spec.rb +24 -0
- data/spec/item_spec.rb +2 -2
- data/spec/label_spec.rb +31 -33
- data/spec/list_spec.rb +32 -14
- data/spec/notification_spec.rb +3 -3
- data/spec/organization_spec.rb +6 -5
- data/spec/spec_helper.rb +31 -14
- data/spec/token_spec.rb +10 -11
- data/spec/unit/trello/basic_data_spec.rb +67 -8
- data/spec/unit/trello/board/new_spec.rb +370 -0
- data/spec/unit/trello/board/save_spec.rb +49 -0
- data/spec/unit/trello/board/update_fields_spec.rb +129 -0
- data/spec/unit/trello/board/update_spec.rb +197 -0
- data/spec/unit/trello/member/new_spec.rb +62 -0
- data/spec/unit/trello/member/update_fields_spec.rb +80 -0
- data/spec/unit/trello/schema/attribute/base_spec.rb +349 -0
- data/spec/unit/trello/schema/attribute/board_pref_spec.rb +208 -0
- data/spec/unit/trello/schema/attribute/default_spec.rb +236 -0
- data/spec/unit/trello/schema/attribute_builder_spec.rb +55 -0
- data/spec/unit/trello/schema/attribute_registration_spec.rb +59 -0
- data/spec/unit/trello/schema/serializer/default_spec.rb +19 -0
- data/spec/unit/trello/schema/serializer/time_spec.rb +39 -0
- data/spec/unit/trello/schema_spec.rb +25 -0
- data/spec/webhook_spec.rb +23 -7
- metadata +444 -102
- data/lib/trello/register_attributes.rb +0 -54
- data/spec/integration/basic_data/register_attributes_spec.rb +0 -75
@@ -0,0 +1,331 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://api.trello.com/1/actions/61faa73dd180eb86947af0fd?key=DEVELOPER_PUBLIC_KEY&token=MEMBER_TOKEN
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
Accept:
|
11
|
+
- "*/*"
|
12
|
+
User-Agent:
|
13
|
+
- rest-client/2.1.0 (linux x86_64) ruby/3.0.0p0
|
14
|
+
Accept-Encoding:
|
15
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
16
|
+
Host:
|
17
|
+
- api.trello.com
|
18
|
+
response:
|
19
|
+
status:
|
20
|
+
code: 200
|
21
|
+
message: OK
|
22
|
+
headers:
|
23
|
+
X-Dns-Prefetch-Control:
|
24
|
+
- 'off'
|
25
|
+
X-Frame-Options:
|
26
|
+
- DENY
|
27
|
+
X-Download-Options:
|
28
|
+
- noopen
|
29
|
+
X-Permitted-Cross-Domain-Policies:
|
30
|
+
- none
|
31
|
+
Referrer-Policy:
|
32
|
+
- strict-origin-when-cross-origin
|
33
|
+
Surrogate-Control:
|
34
|
+
- no-store
|
35
|
+
Cache-Control:
|
36
|
+
- max-age=0, must-revalidate, no-cache, no-store
|
37
|
+
Pragma:
|
38
|
+
- no-cache
|
39
|
+
Expires:
|
40
|
+
- Thu, 01 Jan 1970 00:00:00
|
41
|
+
X-Trello-Version:
|
42
|
+
- 1.111614.0
|
43
|
+
X-Trello-Environment:
|
44
|
+
- Production
|
45
|
+
Set-Cookie:
|
46
|
+
- dsc=set_cookie_dsc; Path=/; Expires=Sat, 05 Feb 2022 16:17:21 GMT; Secure
|
47
|
+
- preAuthProps=s%3A5e679b808e6e8828784b30e1%3AisEnterpriseAdmin%3Dfalse.oSQJRIF9RziQFo1wvRya3fIryaPvbkhBP%2F03d0%2F%2FuwE;
|
48
|
+
Path=/; HttpOnly
|
49
|
+
Access-Control-Allow-Origin:
|
50
|
+
- "*"
|
51
|
+
Access-Control-Allow-Methods:
|
52
|
+
- GET, PUT, POST, DELETE
|
53
|
+
Access-Control-Allow-Headers:
|
54
|
+
- Authorization, Accept, Content-Type
|
55
|
+
Access-Control-Expose-Headers:
|
56
|
+
- x-rate-limit-api-key-interval-ms, x-rate-limit-api-key-max, x-rate-limit-api-key-remaining,
|
57
|
+
x-rate-limit-api-token-interval-ms, x-rate-limit-api-token-max, x-rate-limit-api-token-remaining
|
58
|
+
X-Rate-Limit-Api-Token-Interval-Ms:
|
59
|
+
- '10000'
|
60
|
+
X-Rate-Limit-Api-Token-Max:
|
61
|
+
- '100'
|
62
|
+
X-Rate-Limit-Api-Token-Remaining:
|
63
|
+
- '99'
|
64
|
+
X-Rate-Limit-Api-Key-Interval-Ms:
|
65
|
+
- '10000'
|
66
|
+
X-Rate-Limit-Api-Key-Max:
|
67
|
+
- '300'
|
68
|
+
X-Rate-Limit-Api-Key-Remaining:
|
69
|
+
- '299'
|
70
|
+
X-Rate-Limit-Member-Interval-Ms:
|
71
|
+
- '10000'
|
72
|
+
X-Rate-Limit-Member-Max:
|
73
|
+
- '375'
|
74
|
+
X-Rate-Limit-Member-Remaining:
|
75
|
+
- '374'
|
76
|
+
X-Server-Time:
|
77
|
+
- '1643818641053'
|
78
|
+
Content-Type:
|
79
|
+
- application/json; charset=utf-8
|
80
|
+
Date:
|
81
|
+
- Wed, 02 Feb 2022 16:17:21 GMT
|
82
|
+
X-Envoy-Upstream-Service-Time:
|
83
|
+
- '99'
|
84
|
+
Expect-Ct:
|
85
|
+
- report-uri="https://web-security-reports.services.atlassian.com/expect-ct-report/trello-edge",
|
86
|
+
max-age=86400
|
87
|
+
Strict-Transport-Security:
|
88
|
+
- max-age=63072000; preload
|
89
|
+
X-Content-Type-Options:
|
90
|
+
- nosniff
|
91
|
+
X-Xss-Protection:
|
92
|
+
- 1; mode=block
|
93
|
+
Atl-Traceid:
|
94
|
+
- b49e26c74840dba3
|
95
|
+
Report-To:
|
96
|
+
- '{"group": "endpoint-1", "max_age": 600, "endpoints": [{"url": "https://dj9s4kmieytgz.cloudfront.net"}],
|
97
|
+
"include_subdomains": true}'
|
98
|
+
Nel:
|
99
|
+
- '{"report_to": "endpoint-1", "max_age": 600, "include_subdomains": true, "failure_fraction":
|
100
|
+
0.001}'
|
101
|
+
Server:
|
102
|
+
- globaledge-envoy
|
103
|
+
Transfer-Encoding:
|
104
|
+
- chunked
|
105
|
+
body:
|
106
|
+
encoding: ASCII-8BIT
|
107
|
+
string: '{"id":"61faa73dd180eb86947af0fd","idMemberCreator":"5e679b808e6e8828784b30e1","data":{"text":"why
|
108
|
+
I can''t get action","textData":{"emoji":{}},"card":{"id":"5f4f98b06183211be96855cb","name":"Test
|
109
|
+
Trello::Card.create","idShort":6,"shortLink":"JlpJt3gF"},"board":{"id":"5e93ba98614ac22d22f085c4","name":"IT
|
110
|
+
2","shortLink":"y1TF9GTa"},"list":{"id":"5e93bac014d40e501ee46b8d","name":"L1"}},"type":"commentCard","date":"2022-02-02T15:46:05.589Z","appCreator":null,"limits":{"reactions":{"perAction":{"status":"ok","disableAt":900,"warnAt":720},"uniquePerAction":{"status":"ok","disableAt":17,"warnAt":14}}},"display":{"translationKey":"action_comment_on_card","entities":{"contextOn":{"type":"translatable","translationKey":"action_on","hideIfContext":true,"idContext":"5f4f98b06183211be96855cb"},"card":{"type":"card","hideIfContext":true,"id":"5f4f98b06183211be96855cb","shortLink":"JlpJt3gF","text":"Test
|
111
|
+
Trello::Card.create"},"comment":{"type":"comment","text":"why I can''t get
|
112
|
+
action"},"memberCreator":{"type":"member","id":"5e679b808e6e8828784b30e1","username":"hoppertest","text":"Hopper
|
113
|
+
Test"}}},"memberCreator":{"id":"5e679b808e6e8828784b30e1","activityBlocked":false,"avatarHash":null,"avatarUrl":null,"fullName":"Hopper
|
114
|
+
Test","idMemberReferrer":null,"initials":"HT","nonPublic":{},"nonPublicAvailable":true,"username":"hoppertest"}}'
|
115
|
+
recorded_at: Wed, 02 Feb 2022 16:17:21 GMT
|
116
|
+
- request:
|
117
|
+
method: delete
|
118
|
+
uri: https://api.trello.com/1/actions/61faa73dd180eb86947af0fd?key=DEVELOPER_PUBLIC_KEY&token=MEMBER_TOKEN
|
119
|
+
body:
|
120
|
+
encoding: US-ASCII
|
121
|
+
string: ''
|
122
|
+
headers:
|
123
|
+
Accept:
|
124
|
+
- "*/*"
|
125
|
+
User-Agent:
|
126
|
+
- rest-client/2.1.0 (linux x86_64) ruby/3.0.0p0
|
127
|
+
Accept-Encoding:
|
128
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
129
|
+
Host:
|
130
|
+
- api.trello.com
|
131
|
+
response:
|
132
|
+
status:
|
133
|
+
code: 200
|
134
|
+
message: OK
|
135
|
+
headers:
|
136
|
+
X-Dns-Prefetch-Control:
|
137
|
+
- 'off'
|
138
|
+
X-Frame-Options:
|
139
|
+
- DENY
|
140
|
+
X-Download-Options:
|
141
|
+
- noopen
|
142
|
+
X-Permitted-Cross-Domain-Policies:
|
143
|
+
- none
|
144
|
+
Referrer-Policy:
|
145
|
+
- strict-origin-when-cross-origin
|
146
|
+
Surrogate-Control:
|
147
|
+
- no-store
|
148
|
+
Cache-Control:
|
149
|
+
- max-age=0, must-revalidate, no-cache, no-store
|
150
|
+
Pragma:
|
151
|
+
- no-cache
|
152
|
+
Expires:
|
153
|
+
- Thu, 01 Jan 1970 00:00:00
|
154
|
+
X-Trello-Version:
|
155
|
+
- 1.111614.0
|
156
|
+
X-Trello-Environment:
|
157
|
+
- Production
|
158
|
+
Access-Control-Allow-Origin:
|
159
|
+
- "*"
|
160
|
+
Access-Control-Allow-Methods:
|
161
|
+
- GET, PUT, POST, DELETE
|
162
|
+
Access-Control-Allow-Headers:
|
163
|
+
- Authorization, Accept, Content-Type
|
164
|
+
Access-Control-Expose-Headers:
|
165
|
+
- x-rate-limit-api-key-interval-ms, x-rate-limit-api-key-max, x-rate-limit-api-key-remaining,
|
166
|
+
x-rate-limit-api-token-interval-ms, x-rate-limit-api-token-max, x-rate-limit-api-token-remaining
|
167
|
+
X-Rate-Limit-Api-Token-Interval-Ms:
|
168
|
+
- '10000'
|
169
|
+
X-Rate-Limit-Api-Token-Max:
|
170
|
+
- '100'
|
171
|
+
X-Rate-Limit-Api-Token-Remaining:
|
172
|
+
- '98'
|
173
|
+
X-Rate-Limit-Action-Interval-Ms:
|
174
|
+
- '3600000'
|
175
|
+
X-Rate-Limit-Action-Max:
|
176
|
+
- '15000'
|
177
|
+
X-Rate-Limit-Action-Remaining:
|
178
|
+
- '14999'
|
179
|
+
X-Rate-Limit-Api-Key-Interval-Ms:
|
180
|
+
- '10000'
|
181
|
+
X-Rate-Limit-Api-Key-Max:
|
182
|
+
- '300'
|
183
|
+
X-Rate-Limit-Api-Key-Remaining:
|
184
|
+
- '298'
|
185
|
+
X-Rate-Limit-Member-Interval-Ms:
|
186
|
+
- '10000'
|
187
|
+
X-Rate-Limit-Member-Max:
|
188
|
+
- '375'
|
189
|
+
X-Rate-Limit-Member-Remaining:
|
190
|
+
- '373'
|
191
|
+
Set-Cookie:
|
192
|
+
- preAuthProps=s%3A5e679b808e6e8828784b30e1%3AisEnterpriseAdmin%3Dfalse.oSQJRIF9RziQFo1wvRya3fIryaPvbkhBP%2F03d0%2F%2FuwE;
|
193
|
+
Path=/; HttpOnly
|
194
|
+
X-Server-Time:
|
195
|
+
- '1643818641840'
|
196
|
+
Content-Type:
|
197
|
+
- application/json; charset=utf-8
|
198
|
+
Date:
|
199
|
+
- Wed, 02 Feb 2022 16:17:21 GMT
|
200
|
+
X-Envoy-Upstream-Service-Time:
|
201
|
+
- '140'
|
202
|
+
Expect-Ct:
|
203
|
+
- report-uri="https://web-security-reports.services.atlassian.com/expect-ct-report/trello-edge",
|
204
|
+
max-age=86400
|
205
|
+
Strict-Transport-Security:
|
206
|
+
- max-age=63072000; preload
|
207
|
+
X-Content-Type-Options:
|
208
|
+
- nosniff
|
209
|
+
X-Xss-Protection:
|
210
|
+
- 1; mode=block
|
211
|
+
Atl-Traceid:
|
212
|
+
- 8ffdb0eeb6ff1cda
|
213
|
+
Report-To:
|
214
|
+
- '{"group": "endpoint-1", "max_age": 600, "endpoints": [{"url": "https://dj9s4kmieytgz.cloudfront.net"}],
|
215
|
+
"include_subdomains": true}'
|
216
|
+
Nel:
|
217
|
+
- '{"report_to": "endpoint-1", "max_age": 600, "include_subdomains": true, "failure_fraction":
|
218
|
+
0.001}'
|
219
|
+
Server:
|
220
|
+
- globaledge-envoy
|
221
|
+
Transfer-Encoding:
|
222
|
+
- chunked
|
223
|
+
body:
|
224
|
+
encoding: ASCII-8BIT
|
225
|
+
string: '{"_value":null}
|
226
|
+
|
227
|
+
'
|
228
|
+
recorded_at: Wed, 02 Feb 2022 16:17:21 GMT
|
229
|
+
- request:
|
230
|
+
method: get
|
231
|
+
uri: https://api.trello.com/1/actions/61faa73dd180eb86947af0fd?key=DEVELOPER_PUBLIC_KEY&token=MEMBER_TOKEN
|
232
|
+
body:
|
233
|
+
encoding: US-ASCII
|
234
|
+
string: ''
|
235
|
+
headers:
|
236
|
+
Accept:
|
237
|
+
- "*/*"
|
238
|
+
User-Agent:
|
239
|
+
- rest-client/2.1.0 (linux x86_64) ruby/3.0.0p0
|
240
|
+
Accept-Encoding:
|
241
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
242
|
+
Host:
|
243
|
+
- api.trello.com
|
244
|
+
response:
|
245
|
+
status:
|
246
|
+
code: 404
|
247
|
+
message: Not Found
|
248
|
+
headers:
|
249
|
+
X-Dns-Prefetch-Control:
|
250
|
+
- 'off'
|
251
|
+
X-Frame-Options:
|
252
|
+
- DENY
|
253
|
+
X-Download-Options:
|
254
|
+
- noopen
|
255
|
+
X-Permitted-Cross-Domain-Policies:
|
256
|
+
- none
|
257
|
+
Referrer-Policy:
|
258
|
+
- strict-origin-when-cross-origin
|
259
|
+
Surrogate-Control:
|
260
|
+
- no-store
|
261
|
+
Cache-Control:
|
262
|
+
- no-store, no-cache, must-revalidate, proxy-revalidate
|
263
|
+
Pragma:
|
264
|
+
- no-cache
|
265
|
+
Expires:
|
266
|
+
- '0'
|
267
|
+
X-Trello-Version:
|
268
|
+
- 1.111614.0
|
269
|
+
X-Trello-Environment:
|
270
|
+
- Production
|
271
|
+
Set-Cookie:
|
272
|
+
- dsc=set_cookie_dsc; Path=/; Expires=Sat, 05 Feb 2022 16:17:22 GMT; Secure
|
273
|
+
Access-Control-Allow-Origin:
|
274
|
+
- "*"
|
275
|
+
Access-Control-Allow-Methods:
|
276
|
+
- GET, PUT, POST, DELETE
|
277
|
+
Access-Control-Allow-Headers:
|
278
|
+
- Authorization, Accept, Content-Type
|
279
|
+
Access-Control-Expose-Headers:
|
280
|
+
- x-rate-limit-api-key-interval-ms, x-rate-limit-api-key-max, x-rate-limit-api-key-remaining,
|
281
|
+
x-rate-limit-api-token-interval-ms, x-rate-limit-api-token-max, x-rate-limit-api-token-remaining
|
282
|
+
X-Rate-Limit-Api-Token-Interval-Ms:
|
283
|
+
- '10000'
|
284
|
+
X-Rate-Limit-Api-Token-Max:
|
285
|
+
- '100'
|
286
|
+
X-Rate-Limit-Api-Token-Remaining:
|
287
|
+
- '97'
|
288
|
+
X-Rate-Limit-Api-Key-Interval-Ms:
|
289
|
+
- '10000'
|
290
|
+
X-Rate-Limit-Api-Key-Max:
|
291
|
+
- '300'
|
292
|
+
X-Rate-Limit-Api-Key-Remaining:
|
293
|
+
- '297'
|
294
|
+
X-Rate-Limit-Member-Interval-Ms:
|
295
|
+
- '10000'
|
296
|
+
X-Rate-Limit-Member-Max:
|
297
|
+
- '375'
|
298
|
+
X-Rate-Limit-Member-Remaining:
|
299
|
+
- '372'
|
300
|
+
Content-Type:
|
301
|
+
- text/plain; charset=utf-8
|
302
|
+
Content-Length:
|
303
|
+
- '37'
|
304
|
+
Date:
|
305
|
+
- Wed, 02 Feb 2022 16:17:22 GMT
|
306
|
+
X-Envoy-Upstream-Service-Time:
|
307
|
+
- '86'
|
308
|
+
Expect-Ct:
|
309
|
+
- report-uri="https://web-security-reports.services.atlassian.com/expect-ct-report/trello-edge",
|
310
|
+
max-age=86400
|
311
|
+
Strict-Transport-Security:
|
312
|
+
- max-age=63072000; preload
|
313
|
+
X-Content-Type-Options:
|
314
|
+
- nosniff
|
315
|
+
X-Xss-Protection:
|
316
|
+
- 1; mode=block
|
317
|
+
Atl-Traceid:
|
318
|
+
- f0fa637a7466a1af
|
319
|
+
Report-To:
|
320
|
+
- '{"group": "endpoint-1", "max_age": 600, "endpoints": [{"url": "https://dj9s4kmieytgz.cloudfront.net"}],
|
321
|
+
"include_subdomains": true}'
|
322
|
+
Nel:
|
323
|
+
- '{"report_to": "endpoint-1", "max_age": 600, "include_subdomains": true, "failure_fraction":
|
324
|
+
0.001}'
|
325
|
+
Server:
|
326
|
+
- globaledge-envoy
|
327
|
+
body:
|
328
|
+
encoding: UTF-8
|
329
|
+
string: The requested resource was not found.
|
330
|
+
recorded_at: Wed, 02 Feb 2022 16:17:22 GMT
|
331
|
+
recorded_with: VCR 6.0.0
|
@@ -0,0 +1,116 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://api.trello.com/1/actions/61faa73dd180eb86947af0fd?key=DEVELOPER_PUBLIC_KEY&token=MEMBER_TOKEN
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
Accept:
|
11
|
+
- "*/*"
|
12
|
+
User-Agent:
|
13
|
+
- rest-client/2.1.0 (linux x86_64) ruby/3.0.0p0
|
14
|
+
Accept-Encoding:
|
15
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
16
|
+
Host:
|
17
|
+
- api.trello.com
|
18
|
+
response:
|
19
|
+
status:
|
20
|
+
code: 200
|
21
|
+
message: OK
|
22
|
+
headers:
|
23
|
+
X-Dns-Prefetch-Control:
|
24
|
+
- 'off'
|
25
|
+
X-Frame-Options:
|
26
|
+
- DENY
|
27
|
+
X-Download-Options:
|
28
|
+
- noopen
|
29
|
+
X-Permitted-Cross-Domain-Policies:
|
30
|
+
- none
|
31
|
+
Referrer-Policy:
|
32
|
+
- strict-origin-when-cross-origin
|
33
|
+
Surrogate-Control:
|
34
|
+
- no-store
|
35
|
+
Cache-Control:
|
36
|
+
- max-age=0, must-revalidate, no-cache, no-store
|
37
|
+
Pragma:
|
38
|
+
- no-cache
|
39
|
+
Expires:
|
40
|
+
- Thu, 01 Jan 1970 00:00:00
|
41
|
+
X-Trello-Version:
|
42
|
+
- 1.111614.0
|
43
|
+
X-Trello-Environment:
|
44
|
+
- Production
|
45
|
+
Set-Cookie:
|
46
|
+
- dsc=set_cookie_dsc; Path=/; Expires=Sat, 05 Feb 2022 16:03:17 GMT; Secure
|
47
|
+
- preAuthProps=s%3A5e679b808e6e8828784b30e1%3AisEnterpriseAdmin%3Dfalse.oSQJRIF9RziQFo1wvRya3fIryaPvbkhBP%2F03d0%2F%2FuwE;
|
48
|
+
Path=/; HttpOnly
|
49
|
+
Access-Control-Allow-Origin:
|
50
|
+
- "*"
|
51
|
+
Access-Control-Allow-Methods:
|
52
|
+
- GET, PUT, POST, DELETE
|
53
|
+
Access-Control-Allow-Headers:
|
54
|
+
- Authorization, Accept, Content-Type
|
55
|
+
Access-Control-Expose-Headers:
|
56
|
+
- x-rate-limit-api-key-interval-ms, x-rate-limit-api-key-max, x-rate-limit-api-key-remaining,
|
57
|
+
x-rate-limit-api-token-interval-ms, x-rate-limit-api-token-max, x-rate-limit-api-token-remaining
|
58
|
+
X-Rate-Limit-Api-Token-Interval-Ms:
|
59
|
+
- '10000'
|
60
|
+
X-Rate-Limit-Api-Token-Max:
|
61
|
+
- '100'
|
62
|
+
X-Rate-Limit-Api-Token-Remaining:
|
63
|
+
- '99'
|
64
|
+
X-Rate-Limit-Api-Key-Interval-Ms:
|
65
|
+
- '10000'
|
66
|
+
X-Rate-Limit-Api-Key-Max:
|
67
|
+
- '300'
|
68
|
+
X-Rate-Limit-Api-Key-Remaining:
|
69
|
+
- '299'
|
70
|
+
X-Rate-Limit-Member-Interval-Ms:
|
71
|
+
- '10000'
|
72
|
+
X-Rate-Limit-Member-Max:
|
73
|
+
- '375'
|
74
|
+
X-Rate-Limit-Member-Remaining:
|
75
|
+
- '374'
|
76
|
+
X-Server-Time:
|
77
|
+
- '1643817797732'
|
78
|
+
Content-Type:
|
79
|
+
- application/json; charset=utf-8
|
80
|
+
Date:
|
81
|
+
- Wed, 02 Feb 2022 16:03:17 GMT
|
82
|
+
X-Envoy-Upstream-Service-Time:
|
83
|
+
- '104'
|
84
|
+
Expect-Ct:
|
85
|
+
- report-uri="https://web-security-reports.services.atlassian.com/expect-ct-report/trello-edge",
|
86
|
+
max-age=86400
|
87
|
+
Strict-Transport-Security:
|
88
|
+
- max-age=63072000; preload
|
89
|
+
X-Content-Type-Options:
|
90
|
+
- nosniff
|
91
|
+
X-Xss-Protection:
|
92
|
+
- 1; mode=block
|
93
|
+
Atl-Traceid:
|
94
|
+
- '084617945389853c'
|
95
|
+
Report-To:
|
96
|
+
- '{"group": "endpoint-1", "max_age": 600, "endpoints": [{"url": "https://dj9s4kmieytgz.cloudfront.net"}],
|
97
|
+
"include_subdomains": true}'
|
98
|
+
Nel:
|
99
|
+
- '{"report_to": "endpoint-1", "max_age": 600, "include_subdomains": true, "failure_fraction":
|
100
|
+
0.001}'
|
101
|
+
Server:
|
102
|
+
- globaledge-envoy
|
103
|
+
Transfer-Encoding:
|
104
|
+
- chunked
|
105
|
+
body:
|
106
|
+
encoding: ASCII-8BIT
|
107
|
+
string: '{"id":"61faa73dd180eb86947af0fd","idMemberCreator":"5e679b808e6e8828784b30e1","data":{"text":"why
|
108
|
+
I can''t get action","textData":{"emoji":{}},"card":{"id":"5f4f98b06183211be96855cb","name":"Test
|
109
|
+
Trello::Card.create","idShort":6,"shortLink":"JlpJt3gF"},"board":{"id":"5e93ba98614ac22d22f085c4","name":"IT
|
110
|
+
2","shortLink":"y1TF9GTa"},"list":{"id":"5e93bac014d40e501ee46b8d","name":"L1"}},"type":"commentCard","date":"2022-02-02T15:46:05.589Z","appCreator":null,"limits":{"reactions":{"perAction":{"status":"ok","disableAt":900,"warnAt":720},"uniquePerAction":{"status":"ok","disableAt":17,"warnAt":14}}},"display":{"translationKey":"action_comment_on_card","entities":{"contextOn":{"type":"translatable","translationKey":"action_on","hideIfContext":true,"idContext":"5f4f98b06183211be96855cb"},"card":{"type":"card","hideIfContext":true,"id":"5f4f98b06183211be96855cb","shortLink":"JlpJt3gF","text":"Test
|
111
|
+
Trello::Card.create"},"comment":{"type":"comment","text":"why I can''t get
|
112
|
+
action"},"memberCreator":{"type":"member","id":"5e679b808e6e8828784b30e1","username":"hoppertest","text":"Hopper
|
113
|
+
Test"}}},"memberCreator":{"id":"5e679b808e6e8828784b30e1","activityBlocked":false,"avatarHash":null,"avatarUrl":null,"fullName":"Hopper
|
114
|
+
Test","idMemberReferrer":null,"initials":"HT","nonPublic":{},"nonPublicAvailable":true,"username":"hoppertest"}}'
|
115
|
+
recorded_at: Wed, 02 Feb 2022 16:03:17 GMT
|
116
|
+
recorded_with: VCR 6.0.0
|
@@ -0,0 +1,100 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://api.trello.com/1/customFields/5f60e443555b8432d959ae94?key=DEVELOPER_PUBLIC_KEY&token=MEMBER_TOKEN
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
Accept:
|
11
|
+
- "*/*"
|
12
|
+
User-Agent:
|
13
|
+
- rest-client/2.1.0 (linux-gnu x86_64) ruby/2.6.6p146
|
14
|
+
Accept-Encoding:
|
15
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
16
|
+
Host:
|
17
|
+
- api.trello.com
|
18
|
+
response:
|
19
|
+
status:
|
20
|
+
code: 200
|
21
|
+
message: OK
|
22
|
+
headers:
|
23
|
+
X-Dns-Prefetch-Control:
|
24
|
+
- 'off'
|
25
|
+
X-Frame-Options:
|
26
|
+
- DENY
|
27
|
+
X-Download-Options:
|
28
|
+
- noopen
|
29
|
+
X-Permitted-Cross-Domain-Policies:
|
30
|
+
- none
|
31
|
+
Referrer-Policy:
|
32
|
+
- strict-origin-when-cross-origin
|
33
|
+
Surrogate-Control:
|
34
|
+
- no-store
|
35
|
+
Cache-Control:
|
36
|
+
- max-age=0, must-revalidate, no-cache, no-store
|
37
|
+
Pragma:
|
38
|
+
- no-cache
|
39
|
+
Expires:
|
40
|
+
- Thu, 01 Jan 1970 00:00:00
|
41
|
+
X-Trello-Version:
|
42
|
+
- 1.2224.0
|
43
|
+
X-Trello-Environment:
|
44
|
+
- Production
|
45
|
+
Set-Cookie:
|
46
|
+
- dsc=set_cookie_dsc; Path=/; Expires=Fri, 18 Sep 2020 16:32:30 GMT; Secure
|
47
|
+
Access-Control-Allow-Origin:
|
48
|
+
- "*"
|
49
|
+
Access-Control-Allow-Methods:
|
50
|
+
- GET, PUT, POST, DELETE
|
51
|
+
Access-Control-Allow-Headers:
|
52
|
+
- Authorization, Accept, Content-Type
|
53
|
+
Access-Control-Expose-Headers:
|
54
|
+
- x-rate-limit-api-key-interval-ms, x-rate-limit-api-key-max, x-rate-limit-api-key-remaining,
|
55
|
+
x-rate-limit-api-token-interval-ms, x-rate-limit-api-token-max, x-rate-limit-api-token-remaining
|
56
|
+
X-Rate-Limit-Api-Key-Interval-Ms:
|
57
|
+
- '10000'
|
58
|
+
X-Rate-Limit-Api-Key-Max:
|
59
|
+
- '300'
|
60
|
+
X-Rate-Limit-Api-Key-Remaining:
|
61
|
+
- '299'
|
62
|
+
X-Rate-Limit-Api-Token-Interval-Ms:
|
63
|
+
- '10000'
|
64
|
+
X-Rate-Limit-Api-Token-Max:
|
65
|
+
- '100'
|
66
|
+
X-Rate-Limit-Api-Token-Remaining:
|
67
|
+
- '99'
|
68
|
+
X-Rate-Limit-Member-Interval-Ms:
|
69
|
+
- '10000'
|
70
|
+
X-Rate-Limit-Member-Max:
|
71
|
+
- '200'
|
72
|
+
X-Rate-Limit-Member-Remaining:
|
73
|
+
- '199'
|
74
|
+
X-Server-Time:
|
75
|
+
- '1600187550789'
|
76
|
+
Content-Type:
|
77
|
+
- application/json; charset=utf-8
|
78
|
+
Date:
|
79
|
+
- Tue, 15 Sep 2020 16:32:30 GMT
|
80
|
+
X-Envoy-Upstream-Service-Time:
|
81
|
+
- '90'
|
82
|
+
Expect-Ct:
|
83
|
+
- report-uri="https://web-security-reports.services.atlassian.com/expect-ct-report/trello-edge",
|
84
|
+
max-age=86400
|
85
|
+
Strict-Transport-Security:
|
86
|
+
- max-age=63072000; preload
|
87
|
+
X-Content-Type-Options:
|
88
|
+
- nosniff
|
89
|
+
X-Xss-Protection:
|
90
|
+
- 1; mode=block
|
91
|
+
Server:
|
92
|
+
- globaledge-envoy
|
93
|
+
Transfer-Encoding:
|
94
|
+
- chunked
|
95
|
+
body:
|
96
|
+
encoding: ASCII-8BIT
|
97
|
+
string: '{"id":"5f60e443555b8432d959ae94","idModel":"5e93ba98614ac22d22f085c4","modelType":"board","fieldGroup":"ac6dae5e75231d8472a407c0af86f871c1c59f3982e4d5a8c8b74af4320c19f8","display":{"cardFront":true},"name":"Finish","pos":32768,"type":"checkbox","limits":{"customFieldOptions":{"perField":{"status":"ok","disableAt":50,"warnAt":45}}}}'
|
98
|
+
http_version: null
|
99
|
+
recorded_at: Tue, 15 Sep 2020 16:32:30 GMT
|
100
|
+
recorded_with: VCR 5.1.0
|
@@ -0,0 +1,100 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://api.trello.com/1/customFields/5f60e443555b8432d959ae94?fields=name,type&key=DEVELOPER_PUBLIC_KEY&token=MEMBER_TOKEN
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
Accept:
|
11
|
+
- "*/*"
|
12
|
+
User-Agent:
|
13
|
+
- rest-client/2.1.0 (linux-gnu x86_64) ruby/2.6.6p146
|
14
|
+
Accept-Encoding:
|
15
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
16
|
+
Host:
|
17
|
+
- api.trello.com
|
18
|
+
response:
|
19
|
+
status:
|
20
|
+
code: 200
|
21
|
+
message: OK
|
22
|
+
headers:
|
23
|
+
X-Dns-Prefetch-Control:
|
24
|
+
- 'off'
|
25
|
+
X-Frame-Options:
|
26
|
+
- DENY
|
27
|
+
X-Download-Options:
|
28
|
+
- noopen
|
29
|
+
X-Permitted-Cross-Domain-Policies:
|
30
|
+
- none
|
31
|
+
Referrer-Policy:
|
32
|
+
- strict-origin-when-cross-origin
|
33
|
+
Surrogate-Control:
|
34
|
+
- no-store
|
35
|
+
Cache-Control:
|
36
|
+
- max-age=0, must-revalidate, no-cache, no-store
|
37
|
+
Pragma:
|
38
|
+
- no-cache
|
39
|
+
Expires:
|
40
|
+
- Thu, 01 Jan 1970 00:00:00
|
41
|
+
X-Trello-Version:
|
42
|
+
- 1.2224.0
|
43
|
+
X-Trello-Environment:
|
44
|
+
- Production
|
45
|
+
Set-Cookie:
|
46
|
+
- dsc=set_cookie_dsc; Path=/; Expires=Fri, 18 Sep 2020 16:32:31 GMT; Secure
|
47
|
+
Access-Control-Allow-Origin:
|
48
|
+
- "*"
|
49
|
+
Access-Control-Allow-Methods:
|
50
|
+
- GET, PUT, POST, DELETE
|
51
|
+
Access-Control-Allow-Headers:
|
52
|
+
- Authorization, Accept, Content-Type
|
53
|
+
Access-Control-Expose-Headers:
|
54
|
+
- x-rate-limit-api-key-interval-ms, x-rate-limit-api-key-max, x-rate-limit-api-key-remaining,
|
55
|
+
x-rate-limit-api-token-interval-ms, x-rate-limit-api-token-max, x-rate-limit-api-token-remaining
|
56
|
+
X-Rate-Limit-Api-Key-Interval-Ms:
|
57
|
+
- '10000'
|
58
|
+
X-Rate-Limit-Api-Key-Max:
|
59
|
+
- '300'
|
60
|
+
X-Rate-Limit-Api-Key-Remaining:
|
61
|
+
- '298'
|
62
|
+
X-Rate-Limit-Api-Token-Interval-Ms:
|
63
|
+
- '10000'
|
64
|
+
X-Rate-Limit-Api-Token-Max:
|
65
|
+
- '100'
|
66
|
+
X-Rate-Limit-Api-Token-Remaining:
|
67
|
+
- '98'
|
68
|
+
X-Rate-Limit-Member-Interval-Ms:
|
69
|
+
- '10000'
|
70
|
+
X-Rate-Limit-Member-Max:
|
71
|
+
- '200'
|
72
|
+
X-Rate-Limit-Member-Remaining:
|
73
|
+
- '198'
|
74
|
+
X-Server-Time:
|
75
|
+
- '1600187551425'
|
76
|
+
Content-Type:
|
77
|
+
- application/json; charset=utf-8
|
78
|
+
Date:
|
79
|
+
- Tue, 15 Sep 2020 16:32:31 GMT
|
80
|
+
X-Envoy-Upstream-Service-Time:
|
81
|
+
- '90'
|
82
|
+
Expect-Ct:
|
83
|
+
- report-uri="https://web-security-reports.services.atlassian.com/expect-ct-report/trello-edge",
|
84
|
+
max-age=86400
|
85
|
+
Strict-Transport-Security:
|
86
|
+
- max-age=63072000; preload
|
87
|
+
X-Content-Type-Options:
|
88
|
+
- nosniff
|
89
|
+
X-Xss-Protection:
|
90
|
+
- 1; mode=block
|
91
|
+
Server:
|
92
|
+
- globaledge-envoy
|
93
|
+
Transfer-Encoding:
|
94
|
+
- chunked
|
95
|
+
body:
|
96
|
+
encoding: ASCII-8BIT
|
97
|
+
string: '{"id":"5f60e443555b8432d959ae94","name":"Finish","type":"checkbox"}'
|
98
|
+
http_version: null
|
99
|
+
recorded_at: Tue, 15 Sep 2020 16:32:31 GMT
|
100
|
+
recorded_with: VCR 5.1.0
|
@@ -2,7 +2,7 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: put
|
5
|
-
uri: https://api.trello.com/1/
|
5
|
+
uri: https://api.trello.com/1/cards/5e679be5d53dfa748f41d775/customField/5e68e8e87c16bf75894df21a/item?key=DEVELOPER_PUBLIC_KEY&token=MEMBER_TOKEN
|
6
6
|
body:
|
7
7
|
encoding: UTF-8
|
8
8
|
string: value[text]=cool
|
@@ -186,7 +186,7 @@ http_interactions:
|
|
186
186
|
recorded_at: Wed, 11 Mar 2020 15:04:10 GMT
|
187
187
|
- request:
|
188
188
|
method: put
|
189
|
-
uri: https://api.trello.com/1/
|
189
|
+
uri: https://api.trello.com/1/cards/5e679be5d53dfa748f41d775/customField/5e68e8e87c16bf75894df21a/item?key=DEVELOPER_PUBLIC_KEY&token=MEMBER_TOKEN
|
190
190
|
body:
|
191
191
|
encoding: UTF-8
|
192
192
|
string: value[text]=nice
|