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,886 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://api.trello.com/1/lists/5e94eafdf553d46ea525faa7?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.2213.0
|
43
|
+
X-Trello-Environment:
|
44
|
+
- Production
|
45
|
+
Set-Cookie:
|
46
|
+
- dsc=set_cookie_dsc; Path=/; Expires=Mon, 07 Sep 2020 15:46:26 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
|
+
- '1599234386744'
|
76
|
+
Content-Type:
|
77
|
+
- application/json; charset=utf-8
|
78
|
+
Date:
|
79
|
+
- Fri, 04 Sep 2020 15:46:26 GMT
|
80
|
+
X-Envoy-Upstream-Service-Time:
|
81
|
+
- '81'
|
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":"5e94eafdf553d46ea525faa7","name":"L1","closed":false,"pos":65535,"idBoard":"5e94eaf386374970d06e4c89"}'
|
98
|
+
http_version: null
|
99
|
+
recorded_at: Fri, 04 Sep 2020 15:46:26 GMT
|
100
|
+
- request:
|
101
|
+
method: get
|
102
|
+
uri: https://api.trello.com/1/lists/5e94fa1248c5e41ad0464a7f?key=DEVELOPER_PUBLIC_KEY&token=MEMBER_TOKEN
|
103
|
+
body:
|
104
|
+
encoding: US-ASCII
|
105
|
+
string: ''
|
106
|
+
headers:
|
107
|
+
Accept:
|
108
|
+
- "*/*"
|
109
|
+
User-Agent:
|
110
|
+
- rest-client/2.1.0 (linux-gnu x86_64) ruby/2.6.6p146
|
111
|
+
Accept-Encoding:
|
112
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
113
|
+
Host:
|
114
|
+
- api.trello.com
|
115
|
+
response:
|
116
|
+
status:
|
117
|
+
code: 200
|
118
|
+
message: OK
|
119
|
+
headers:
|
120
|
+
X-Dns-Prefetch-Control:
|
121
|
+
- 'off'
|
122
|
+
X-Frame-Options:
|
123
|
+
- DENY
|
124
|
+
X-Download-Options:
|
125
|
+
- noopen
|
126
|
+
X-Permitted-Cross-Domain-Policies:
|
127
|
+
- none
|
128
|
+
Referrer-Policy:
|
129
|
+
- strict-origin-when-cross-origin
|
130
|
+
Surrogate-Control:
|
131
|
+
- no-store
|
132
|
+
Cache-Control:
|
133
|
+
- max-age=0, must-revalidate, no-cache, no-store
|
134
|
+
Pragma:
|
135
|
+
- no-cache
|
136
|
+
Expires:
|
137
|
+
- Thu, 01 Jan 1970 00:00:00
|
138
|
+
X-Trello-Version:
|
139
|
+
- 1.2213.0
|
140
|
+
X-Trello-Environment:
|
141
|
+
- Production
|
142
|
+
Set-Cookie:
|
143
|
+
- dsc=set_cookie_dsc; Path=/; Expires=Mon, 07 Sep 2020 15:46:27 GMT; Secure
|
144
|
+
Access-Control-Allow-Origin:
|
145
|
+
- "*"
|
146
|
+
Access-Control-Allow-Methods:
|
147
|
+
- GET, PUT, POST, DELETE
|
148
|
+
Access-Control-Allow-Headers:
|
149
|
+
- Authorization, Accept, Content-Type
|
150
|
+
Access-Control-Expose-Headers:
|
151
|
+
- x-rate-limit-api-key-interval-ms, x-rate-limit-api-key-max, x-rate-limit-api-key-remaining,
|
152
|
+
x-rate-limit-api-token-interval-ms, x-rate-limit-api-token-max, x-rate-limit-api-token-remaining
|
153
|
+
X-Rate-Limit-Api-Key-Interval-Ms:
|
154
|
+
- '10000'
|
155
|
+
X-Rate-Limit-Api-Key-Max:
|
156
|
+
- '300'
|
157
|
+
X-Rate-Limit-Api-Key-Remaining:
|
158
|
+
- '298'
|
159
|
+
X-Rate-Limit-Api-Token-Interval-Ms:
|
160
|
+
- '10000'
|
161
|
+
X-Rate-Limit-Api-Token-Max:
|
162
|
+
- '100'
|
163
|
+
X-Rate-Limit-Api-Token-Remaining:
|
164
|
+
- '98'
|
165
|
+
X-Rate-Limit-Member-Interval-Ms:
|
166
|
+
- '10000'
|
167
|
+
X-Rate-Limit-Member-Max:
|
168
|
+
- '200'
|
169
|
+
X-Rate-Limit-Member-Remaining:
|
170
|
+
- '198'
|
171
|
+
X-Server-Time:
|
172
|
+
- '1599234387426'
|
173
|
+
Content-Type:
|
174
|
+
- application/json; charset=utf-8
|
175
|
+
Date:
|
176
|
+
- Fri, 04 Sep 2020 15:46:27 GMT
|
177
|
+
X-Envoy-Upstream-Service-Time:
|
178
|
+
- '81'
|
179
|
+
Expect-Ct:
|
180
|
+
- report-uri="https://web-security-reports.services.atlassian.com/expect-ct-report/trello-edge",
|
181
|
+
max-age=86400
|
182
|
+
Strict-Transport-Security:
|
183
|
+
- max-age=63072000; preload
|
184
|
+
X-Content-Type-Options:
|
185
|
+
- nosniff
|
186
|
+
X-Xss-Protection:
|
187
|
+
- 1; mode=block
|
188
|
+
Server:
|
189
|
+
- globaledge-envoy
|
190
|
+
Transfer-Encoding:
|
191
|
+
- chunked
|
192
|
+
body:
|
193
|
+
encoding: ASCII-8BIT
|
194
|
+
string: '{"id":"5e94fa1248c5e41ad0464a7f","name":"L2","closed":false,"pos":131071,"idBoard":"5e94eaf386374970d06e4c89"}'
|
195
|
+
http_version: null
|
196
|
+
recorded_at: Fri, 04 Sep 2020 15:46:27 GMT
|
197
|
+
- request:
|
198
|
+
method: get
|
199
|
+
uri: https://api.trello.com/1/lists/5e94eafdf553d46ea525faa7/cards?filter=open&key=DEVELOPER_PUBLIC_KEY&token=MEMBER_TOKEN
|
200
|
+
body:
|
201
|
+
encoding: US-ASCII
|
202
|
+
string: ''
|
203
|
+
headers:
|
204
|
+
Accept:
|
205
|
+
- "*/*"
|
206
|
+
User-Agent:
|
207
|
+
- rest-client/2.1.0 (linux-gnu x86_64) ruby/2.6.6p146
|
208
|
+
Accept-Encoding:
|
209
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
210
|
+
Host:
|
211
|
+
- api.trello.com
|
212
|
+
response:
|
213
|
+
status:
|
214
|
+
code: 200
|
215
|
+
message: OK
|
216
|
+
headers:
|
217
|
+
X-Dns-Prefetch-Control:
|
218
|
+
- 'off'
|
219
|
+
X-Frame-Options:
|
220
|
+
- DENY
|
221
|
+
X-Download-Options:
|
222
|
+
- noopen
|
223
|
+
X-Permitted-Cross-Domain-Policies:
|
224
|
+
- none
|
225
|
+
Referrer-Policy:
|
226
|
+
- strict-origin-when-cross-origin
|
227
|
+
Surrogate-Control:
|
228
|
+
- no-store
|
229
|
+
Cache-Control:
|
230
|
+
- max-age=0, must-revalidate, no-cache, no-store
|
231
|
+
Pragma:
|
232
|
+
- no-cache
|
233
|
+
Expires:
|
234
|
+
- Thu, 01 Jan 1970 00:00:00
|
235
|
+
X-Trello-Version:
|
236
|
+
- 1.2213.0
|
237
|
+
X-Trello-Environment:
|
238
|
+
- Production
|
239
|
+
Set-Cookie:
|
240
|
+
- dsc=set_cookie_dsc; Path=/; Expires=Mon, 07 Sep 2020 15:46:28 GMT; Secure
|
241
|
+
Access-Control-Allow-Origin:
|
242
|
+
- "*"
|
243
|
+
Access-Control-Allow-Methods:
|
244
|
+
- GET, PUT, POST, DELETE
|
245
|
+
Access-Control-Allow-Headers:
|
246
|
+
- Authorization, Accept, Content-Type
|
247
|
+
Access-Control-Expose-Headers:
|
248
|
+
- x-rate-limit-api-key-interval-ms, x-rate-limit-api-key-max, x-rate-limit-api-key-remaining,
|
249
|
+
x-rate-limit-api-token-interval-ms, x-rate-limit-api-token-max, x-rate-limit-api-token-remaining
|
250
|
+
X-Rate-Limit-Api-Token-Interval-Ms:
|
251
|
+
- '10000'
|
252
|
+
X-Rate-Limit-Api-Token-Max:
|
253
|
+
- '100'
|
254
|
+
X-Rate-Limit-Api-Token-Remaining:
|
255
|
+
- '97'
|
256
|
+
X-Rate-Limit-Api-Key-Interval-Ms:
|
257
|
+
- '10000'
|
258
|
+
X-Rate-Limit-Api-Key-Max:
|
259
|
+
- '300'
|
260
|
+
X-Rate-Limit-Api-Key-Remaining:
|
261
|
+
- '297'
|
262
|
+
X-Rate-Limit-Member-Interval-Ms:
|
263
|
+
- '10000'
|
264
|
+
X-Rate-Limit-Member-Max:
|
265
|
+
- '200'
|
266
|
+
X-Rate-Limit-Member-Remaining:
|
267
|
+
- '197'
|
268
|
+
X-Server-Time:
|
269
|
+
- '1599234388140'
|
270
|
+
X-Trello-Actual-Fastget-Path:
|
271
|
+
- fast
|
272
|
+
Content-Type:
|
273
|
+
- application/json; charset=utf-8
|
274
|
+
Date:
|
275
|
+
- Fri, 04 Sep 2020 15:46:27 GMT
|
276
|
+
X-Envoy-Upstream-Service-Time:
|
277
|
+
- '97'
|
278
|
+
Expect-Ct:
|
279
|
+
- report-uri="https://web-security-reports.services.atlassian.com/expect-ct-report/trello-edge",
|
280
|
+
max-age=86400
|
281
|
+
Strict-Transport-Security:
|
282
|
+
- max-age=63072000; preload
|
283
|
+
X-Content-Type-Options:
|
284
|
+
- nosniff
|
285
|
+
X-Xss-Protection:
|
286
|
+
- 1; mode=block
|
287
|
+
Server:
|
288
|
+
- globaledge-envoy
|
289
|
+
Transfer-Encoding:
|
290
|
+
- chunked
|
291
|
+
body:
|
292
|
+
encoding: ASCII-8BIT
|
293
|
+
string: '[{"id":"5e94fd9443f25a7263b165d0","checkItemStates":null,"closed":false,"dateLastActivity":"2020-09-04T15:44:57.808Z","desc":"testing
|
294
|
+
card update!","descData":{"emoji":{}},"dueReminder":null,"idBoard":"5e94eaf386374970d06e4c89","idList":"5e94eafdf553d46ea525faa7","idMembersVoted":[],"idShort":2,"idAttachmentCover":null,"idLabels":["5e94eaf37669b225494161c7"],"manualCoverAttachment":false,"name":"Test
|
295
|
+
Trello::Card.update!","pos":16384,"shortLink":"xx9My9vC","isTemplate":false,"badges":{"attachmentsByType":{"trello":{"board":0,"card":0}},"location":false,"votes":0,"viewingMemberVoted":false,"subscribed":true,"fogbugz":"","checkItems":0,"checkItemsChecked":0,"checkItemsEarliestDue":null,"comments":0,"attachments":0,"description":true,"due":"2020-12-22T01:59:00.000Z","dueComplete":false,"start":null},"dueComplete":false,"due":"2020-12-22T01:59:00.000Z","idChecklists":[],"idMembers":["5e679b808e6e8828784b30e1"],"labels":[{"id":"5e94eaf37669b225494161c7","idBoard":"5e94eaf386374970d06e4c89","name":"","color":"orange"}],"shortUrl":"https://trello.com/c/xx9My9vC","start":null,"subscribed":true,"url":"https://trello.com/c/xx9My9vC/2-test-trellocardupdate","cover":{"idAttachment":null,"color":null,"idUploadedBackground":null,"size":"normal","brightness":"light"}}]'
|
296
|
+
http_version: null
|
297
|
+
recorded_at: Fri, 04 Sep 2020 15:46:28 GMT
|
298
|
+
- request:
|
299
|
+
method: get
|
300
|
+
uri: https://api.trello.com/1/lists/5e94fa1248c5e41ad0464a7f/cards?filter=open&key=DEVELOPER_PUBLIC_KEY&token=MEMBER_TOKEN
|
301
|
+
body:
|
302
|
+
encoding: US-ASCII
|
303
|
+
string: ''
|
304
|
+
headers:
|
305
|
+
Accept:
|
306
|
+
- "*/*"
|
307
|
+
User-Agent:
|
308
|
+
- rest-client/2.1.0 (linux-gnu x86_64) ruby/2.6.6p146
|
309
|
+
Accept-Encoding:
|
310
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
311
|
+
Host:
|
312
|
+
- api.trello.com
|
313
|
+
response:
|
314
|
+
status:
|
315
|
+
code: 200
|
316
|
+
message: OK
|
317
|
+
headers:
|
318
|
+
X-Dns-Prefetch-Control:
|
319
|
+
- 'off'
|
320
|
+
X-Frame-Options:
|
321
|
+
- DENY
|
322
|
+
X-Download-Options:
|
323
|
+
- noopen
|
324
|
+
X-Permitted-Cross-Domain-Policies:
|
325
|
+
- none
|
326
|
+
Referrer-Policy:
|
327
|
+
- strict-origin-when-cross-origin
|
328
|
+
Surrogate-Control:
|
329
|
+
- no-store
|
330
|
+
Cache-Control:
|
331
|
+
- max-age=0, must-revalidate, no-cache, no-store
|
332
|
+
Pragma:
|
333
|
+
- no-cache
|
334
|
+
Expires:
|
335
|
+
- Thu, 01 Jan 1970 00:00:00
|
336
|
+
X-Trello-Version:
|
337
|
+
- 1.2213.0
|
338
|
+
X-Trello-Environment:
|
339
|
+
- Production
|
340
|
+
Set-Cookie:
|
341
|
+
- dsc=set_cookie_dsc; Path=/; Expires=Mon, 07 Sep 2020 15:46:28 GMT; Secure
|
342
|
+
Access-Control-Allow-Origin:
|
343
|
+
- "*"
|
344
|
+
Access-Control-Allow-Methods:
|
345
|
+
- GET, PUT, POST, DELETE
|
346
|
+
Access-Control-Allow-Headers:
|
347
|
+
- Authorization, Accept, Content-Type
|
348
|
+
Access-Control-Expose-Headers:
|
349
|
+
- x-rate-limit-api-key-interval-ms, x-rate-limit-api-key-max, x-rate-limit-api-key-remaining,
|
350
|
+
x-rate-limit-api-token-interval-ms, x-rate-limit-api-token-max, x-rate-limit-api-token-remaining
|
351
|
+
X-Rate-Limit-Api-Key-Interval-Ms:
|
352
|
+
- '10000'
|
353
|
+
X-Rate-Limit-Api-Key-Max:
|
354
|
+
- '300'
|
355
|
+
X-Rate-Limit-Api-Key-Remaining:
|
356
|
+
- '296'
|
357
|
+
X-Rate-Limit-Api-Token-Interval-Ms:
|
358
|
+
- '10000'
|
359
|
+
X-Rate-Limit-Api-Token-Max:
|
360
|
+
- '100'
|
361
|
+
X-Rate-Limit-Api-Token-Remaining:
|
362
|
+
- '96'
|
363
|
+
X-Rate-Limit-Member-Interval-Ms:
|
364
|
+
- '10000'
|
365
|
+
X-Rate-Limit-Member-Max:
|
366
|
+
- '200'
|
367
|
+
X-Rate-Limit-Member-Remaining:
|
368
|
+
- '196'
|
369
|
+
X-Server-Time:
|
370
|
+
- '1599234388751'
|
371
|
+
Content-Type:
|
372
|
+
- application/json; charset=utf-8
|
373
|
+
Date:
|
374
|
+
- Fri, 04 Sep 2020 15:46:28 GMT
|
375
|
+
X-Envoy-Upstream-Service-Time:
|
376
|
+
- '88'
|
377
|
+
Expect-Ct:
|
378
|
+
- report-uri="https://web-security-reports.services.atlassian.com/expect-ct-report/trello-edge",
|
379
|
+
max-age=86400
|
380
|
+
Strict-Transport-Security:
|
381
|
+
- max-age=63072000; preload
|
382
|
+
X-Content-Type-Options:
|
383
|
+
- nosniff
|
384
|
+
X-Xss-Protection:
|
385
|
+
- 1; mode=block
|
386
|
+
Server:
|
387
|
+
- globaledge-envoy
|
388
|
+
Transfer-Encoding:
|
389
|
+
- chunked
|
390
|
+
body:
|
391
|
+
encoding: ASCII-8BIT
|
392
|
+
string: "[]"
|
393
|
+
http_version: null
|
394
|
+
recorded_at: Fri, 04 Sep 2020 15:46:28 GMT
|
395
|
+
- request:
|
396
|
+
method: post
|
397
|
+
uri: https://api.trello.com/1/lists/5e94eafdf553d46ea525faa7/moveAllCards?key=DEVELOPER_PUBLIC_KEY&token=MEMBER_TOKEN
|
398
|
+
body:
|
399
|
+
encoding: UTF-8
|
400
|
+
string: idBoard=5e94eaf386374970d06e4c89&idList=5e94fa1248c5e41ad0464a7f
|
401
|
+
headers:
|
402
|
+
Accept:
|
403
|
+
- "*/*"
|
404
|
+
User-Agent:
|
405
|
+
- rest-client/2.1.0 (linux-gnu x86_64) ruby/2.6.6p146
|
406
|
+
Content-Length:
|
407
|
+
- '64'
|
408
|
+
Content-Type:
|
409
|
+
- application/x-www-form-urlencoded
|
410
|
+
Accept-Encoding:
|
411
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
412
|
+
Host:
|
413
|
+
- api.trello.com
|
414
|
+
response:
|
415
|
+
status:
|
416
|
+
code: 200
|
417
|
+
message: OK
|
418
|
+
headers:
|
419
|
+
X-Dns-Prefetch-Control:
|
420
|
+
- 'off'
|
421
|
+
X-Frame-Options:
|
422
|
+
- DENY
|
423
|
+
X-Download-Options:
|
424
|
+
- noopen
|
425
|
+
X-Permitted-Cross-Domain-Policies:
|
426
|
+
- none
|
427
|
+
Referrer-Policy:
|
428
|
+
- strict-origin-when-cross-origin
|
429
|
+
Surrogate-Control:
|
430
|
+
- no-store
|
431
|
+
Cache-Control:
|
432
|
+
- max-age=0, must-revalidate, no-cache, no-store
|
433
|
+
Pragma:
|
434
|
+
- no-cache
|
435
|
+
Expires:
|
436
|
+
- Thu, 01 Jan 1970 00:00:00
|
437
|
+
X-Trello-Version:
|
438
|
+
- 1.2213.0
|
439
|
+
X-Trello-Environment:
|
440
|
+
- Production
|
441
|
+
Access-Control-Allow-Origin:
|
442
|
+
- "*"
|
443
|
+
Access-Control-Allow-Methods:
|
444
|
+
- GET, PUT, POST, DELETE
|
445
|
+
Access-Control-Allow-Headers:
|
446
|
+
- Authorization, Accept, Content-Type
|
447
|
+
Access-Control-Expose-Headers:
|
448
|
+
- x-rate-limit-api-key-interval-ms, x-rate-limit-api-key-max, x-rate-limit-api-key-remaining,
|
449
|
+
x-rate-limit-api-token-interval-ms, x-rate-limit-api-token-max, x-rate-limit-api-token-remaining
|
450
|
+
X-Rate-Limit-Api-Key-Interval-Ms:
|
451
|
+
- '10000'
|
452
|
+
X-Rate-Limit-Api-Key-Max:
|
453
|
+
- '300'
|
454
|
+
X-Rate-Limit-Api-Key-Remaining:
|
455
|
+
- '295'
|
456
|
+
X-Rate-Limit-Api-Token-Interval-Ms:
|
457
|
+
- '10000'
|
458
|
+
X-Rate-Limit-Api-Token-Max:
|
459
|
+
- '100'
|
460
|
+
X-Rate-Limit-Api-Token-Remaining:
|
461
|
+
- '95'
|
462
|
+
X-Rate-Limit-Member-Interval-Ms:
|
463
|
+
- '10000'
|
464
|
+
X-Rate-Limit-Member-Max:
|
465
|
+
- '200'
|
466
|
+
X-Rate-Limit-Member-Remaining:
|
467
|
+
- '195'
|
468
|
+
X-Server-Time:
|
469
|
+
- '1599234389589'
|
470
|
+
Content-Type:
|
471
|
+
- application/json; charset=utf-8
|
472
|
+
Date:
|
473
|
+
- Fri, 04 Sep 2020 15:46:29 GMT
|
474
|
+
X-Envoy-Upstream-Service-Time:
|
475
|
+
- '281'
|
476
|
+
Expect-Ct:
|
477
|
+
- report-uri="https://web-security-reports.services.atlassian.com/expect-ct-report/trello-edge",
|
478
|
+
max-age=86400
|
479
|
+
Strict-Transport-Security:
|
480
|
+
- max-age=63072000; preload
|
481
|
+
X-Content-Type-Options:
|
482
|
+
- nosniff
|
483
|
+
X-Xss-Protection:
|
484
|
+
- 1; mode=block
|
485
|
+
Server:
|
486
|
+
- globaledge-envoy
|
487
|
+
Transfer-Encoding:
|
488
|
+
- chunked
|
489
|
+
body:
|
490
|
+
encoding: ASCII-8BIT
|
491
|
+
string: '[{"id":"5e94fd9443f25a7263b165d0","idBoard":"5e94eaf386374970d06e4c89","idList":"5e94fa1248c5e41ad0464a7f","pos":16384}]'
|
492
|
+
http_version: null
|
493
|
+
recorded_at: Fri, 04 Sep 2020 15:46:29 GMT
|
494
|
+
- request:
|
495
|
+
method: get
|
496
|
+
uri: https://api.trello.com/1/lists/5e94eafdf553d46ea525faa7?key=DEVELOPER_PUBLIC_KEY&token=MEMBER_TOKEN
|
497
|
+
body:
|
498
|
+
encoding: US-ASCII
|
499
|
+
string: ''
|
500
|
+
headers:
|
501
|
+
Accept:
|
502
|
+
- "*/*"
|
503
|
+
User-Agent:
|
504
|
+
- rest-client/2.1.0 (linux-gnu x86_64) ruby/2.6.6p146
|
505
|
+
Accept-Encoding:
|
506
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
507
|
+
Host:
|
508
|
+
- api.trello.com
|
509
|
+
response:
|
510
|
+
status:
|
511
|
+
code: 200
|
512
|
+
message: OK
|
513
|
+
headers:
|
514
|
+
X-Dns-Prefetch-Control:
|
515
|
+
- 'off'
|
516
|
+
X-Frame-Options:
|
517
|
+
- DENY
|
518
|
+
X-Download-Options:
|
519
|
+
- noopen
|
520
|
+
X-Permitted-Cross-Domain-Policies:
|
521
|
+
- none
|
522
|
+
Referrer-Policy:
|
523
|
+
- strict-origin-when-cross-origin
|
524
|
+
Surrogate-Control:
|
525
|
+
- no-store
|
526
|
+
Cache-Control:
|
527
|
+
- max-age=0, must-revalidate, no-cache, no-store
|
528
|
+
Pragma:
|
529
|
+
- no-cache
|
530
|
+
Expires:
|
531
|
+
- Thu, 01 Jan 1970 00:00:00
|
532
|
+
X-Trello-Version:
|
533
|
+
- 1.2213.0
|
534
|
+
X-Trello-Environment:
|
535
|
+
- Production
|
536
|
+
Set-Cookie:
|
537
|
+
- dsc=set_cookie_dsc; Path=/; Expires=Mon, 07 Sep 2020 15:46:30 GMT; Secure
|
538
|
+
Access-Control-Allow-Origin:
|
539
|
+
- "*"
|
540
|
+
Access-Control-Allow-Methods:
|
541
|
+
- GET, PUT, POST, DELETE
|
542
|
+
Access-Control-Allow-Headers:
|
543
|
+
- Authorization, Accept, Content-Type
|
544
|
+
Access-Control-Expose-Headers:
|
545
|
+
- x-rate-limit-api-key-interval-ms, x-rate-limit-api-key-max, x-rate-limit-api-key-remaining,
|
546
|
+
x-rate-limit-api-token-interval-ms, x-rate-limit-api-token-max, x-rate-limit-api-token-remaining
|
547
|
+
X-Rate-Limit-Api-Key-Interval-Ms:
|
548
|
+
- '10000'
|
549
|
+
X-Rate-Limit-Api-Key-Max:
|
550
|
+
- '300'
|
551
|
+
X-Rate-Limit-Api-Key-Remaining:
|
552
|
+
- '299'
|
553
|
+
X-Rate-Limit-Api-Token-Interval-Ms:
|
554
|
+
- '10000'
|
555
|
+
X-Rate-Limit-Api-Token-Max:
|
556
|
+
- '100'
|
557
|
+
X-Rate-Limit-Api-Token-Remaining:
|
558
|
+
- '99'
|
559
|
+
X-Rate-Limit-Member-Interval-Ms:
|
560
|
+
- '10000'
|
561
|
+
X-Rate-Limit-Member-Max:
|
562
|
+
- '200'
|
563
|
+
X-Rate-Limit-Member-Remaining:
|
564
|
+
- '199'
|
565
|
+
X-Server-Time:
|
566
|
+
- '1599234390243'
|
567
|
+
Content-Type:
|
568
|
+
- application/json; charset=utf-8
|
569
|
+
Date:
|
570
|
+
- Fri, 04 Sep 2020 15:46:30 GMT
|
571
|
+
X-Envoy-Upstream-Service-Time:
|
572
|
+
- '81'
|
573
|
+
Expect-Ct:
|
574
|
+
- report-uri="https://web-security-reports.services.atlassian.com/expect-ct-report/trello-edge",
|
575
|
+
max-age=86400
|
576
|
+
Strict-Transport-Security:
|
577
|
+
- max-age=63072000; preload
|
578
|
+
X-Content-Type-Options:
|
579
|
+
- nosniff
|
580
|
+
X-Xss-Protection:
|
581
|
+
- 1; mode=block
|
582
|
+
Server:
|
583
|
+
- globaledge-envoy
|
584
|
+
Transfer-Encoding:
|
585
|
+
- chunked
|
586
|
+
body:
|
587
|
+
encoding: ASCII-8BIT
|
588
|
+
string: '{"id":"5e94eafdf553d46ea525faa7","name":"L1","closed":false,"pos":65535,"idBoard":"5e94eaf386374970d06e4c89"}'
|
589
|
+
http_version: null
|
590
|
+
recorded_at: Fri, 04 Sep 2020 15:46:30 GMT
|
591
|
+
- request:
|
592
|
+
method: get
|
593
|
+
uri: https://api.trello.com/1/lists/5e94fa1248c5e41ad0464a7f?key=DEVELOPER_PUBLIC_KEY&token=MEMBER_TOKEN
|
594
|
+
body:
|
595
|
+
encoding: US-ASCII
|
596
|
+
string: ''
|
597
|
+
headers:
|
598
|
+
Accept:
|
599
|
+
- "*/*"
|
600
|
+
User-Agent:
|
601
|
+
- rest-client/2.1.0 (linux-gnu x86_64) ruby/2.6.6p146
|
602
|
+
Accept-Encoding:
|
603
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
604
|
+
Host:
|
605
|
+
- api.trello.com
|
606
|
+
response:
|
607
|
+
status:
|
608
|
+
code: 200
|
609
|
+
message: OK
|
610
|
+
headers:
|
611
|
+
X-Dns-Prefetch-Control:
|
612
|
+
- 'off'
|
613
|
+
X-Frame-Options:
|
614
|
+
- DENY
|
615
|
+
X-Download-Options:
|
616
|
+
- noopen
|
617
|
+
X-Permitted-Cross-Domain-Policies:
|
618
|
+
- none
|
619
|
+
Referrer-Policy:
|
620
|
+
- strict-origin-when-cross-origin
|
621
|
+
Surrogate-Control:
|
622
|
+
- no-store
|
623
|
+
Cache-Control:
|
624
|
+
- max-age=0, must-revalidate, no-cache, no-store
|
625
|
+
Pragma:
|
626
|
+
- no-cache
|
627
|
+
Expires:
|
628
|
+
- Thu, 01 Jan 1970 00:00:00
|
629
|
+
X-Trello-Version:
|
630
|
+
- 1.2213.0
|
631
|
+
X-Trello-Environment:
|
632
|
+
- Production
|
633
|
+
Set-Cookie:
|
634
|
+
- dsc=set_cookie_dsc; Path=/; Expires=Mon, 07 Sep 2020 15:46:30 GMT; Secure
|
635
|
+
Access-Control-Allow-Origin:
|
636
|
+
- "*"
|
637
|
+
Access-Control-Allow-Methods:
|
638
|
+
- GET, PUT, POST, DELETE
|
639
|
+
Access-Control-Allow-Headers:
|
640
|
+
- Authorization, Accept, Content-Type
|
641
|
+
Access-Control-Expose-Headers:
|
642
|
+
- x-rate-limit-api-key-interval-ms, x-rate-limit-api-key-max, x-rate-limit-api-key-remaining,
|
643
|
+
x-rate-limit-api-token-interval-ms, x-rate-limit-api-token-max, x-rate-limit-api-token-remaining
|
644
|
+
X-Rate-Limit-Api-Key-Interval-Ms:
|
645
|
+
- '10000'
|
646
|
+
X-Rate-Limit-Api-Key-Max:
|
647
|
+
- '300'
|
648
|
+
X-Rate-Limit-Api-Key-Remaining:
|
649
|
+
- '298'
|
650
|
+
X-Rate-Limit-Api-Token-Interval-Ms:
|
651
|
+
- '10000'
|
652
|
+
X-Rate-Limit-Api-Token-Max:
|
653
|
+
- '100'
|
654
|
+
X-Rate-Limit-Api-Token-Remaining:
|
655
|
+
- '98'
|
656
|
+
X-Rate-Limit-Member-Interval-Ms:
|
657
|
+
- '10000'
|
658
|
+
X-Rate-Limit-Member-Max:
|
659
|
+
- '200'
|
660
|
+
X-Rate-Limit-Member-Remaining:
|
661
|
+
- '197'
|
662
|
+
X-Server-Time:
|
663
|
+
- '1599234390930'
|
664
|
+
Content-Type:
|
665
|
+
- application/json; charset=utf-8
|
666
|
+
Date:
|
667
|
+
- Fri, 04 Sep 2020 15:46:30 GMT
|
668
|
+
X-Envoy-Upstream-Service-Time:
|
669
|
+
- '86'
|
670
|
+
Expect-Ct:
|
671
|
+
- report-uri="https://web-security-reports.services.atlassian.com/expect-ct-report/trello-edge",
|
672
|
+
max-age=86400
|
673
|
+
Strict-Transport-Security:
|
674
|
+
- max-age=63072000; preload
|
675
|
+
X-Content-Type-Options:
|
676
|
+
- nosniff
|
677
|
+
X-Xss-Protection:
|
678
|
+
- 1; mode=block
|
679
|
+
Server:
|
680
|
+
- globaledge-envoy
|
681
|
+
Transfer-Encoding:
|
682
|
+
- chunked
|
683
|
+
body:
|
684
|
+
encoding: ASCII-8BIT
|
685
|
+
string: '{"id":"5e94fa1248c5e41ad0464a7f","name":"L2","closed":false,"pos":131071,"idBoard":"5e94eaf386374970d06e4c89"}'
|
686
|
+
http_version: null
|
687
|
+
recorded_at: Fri, 04 Sep 2020 15:46:31 GMT
|
688
|
+
- request:
|
689
|
+
method: get
|
690
|
+
uri: https://api.trello.com/1/lists/5e94eafdf553d46ea525faa7/cards?filter=open&key=DEVELOPER_PUBLIC_KEY&token=MEMBER_TOKEN
|
691
|
+
body:
|
692
|
+
encoding: US-ASCII
|
693
|
+
string: ''
|
694
|
+
headers:
|
695
|
+
Accept:
|
696
|
+
- "*/*"
|
697
|
+
User-Agent:
|
698
|
+
- rest-client/2.1.0 (linux-gnu x86_64) ruby/2.6.6p146
|
699
|
+
Accept-Encoding:
|
700
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
701
|
+
Host:
|
702
|
+
- api.trello.com
|
703
|
+
response:
|
704
|
+
status:
|
705
|
+
code: 200
|
706
|
+
message: OK
|
707
|
+
headers:
|
708
|
+
X-Dns-Prefetch-Control:
|
709
|
+
- 'off'
|
710
|
+
X-Frame-Options:
|
711
|
+
- DENY
|
712
|
+
X-Download-Options:
|
713
|
+
- noopen
|
714
|
+
X-Permitted-Cross-Domain-Policies:
|
715
|
+
- none
|
716
|
+
Referrer-Policy:
|
717
|
+
- strict-origin-when-cross-origin
|
718
|
+
Surrogate-Control:
|
719
|
+
- no-store
|
720
|
+
Cache-Control:
|
721
|
+
- max-age=0, must-revalidate, no-cache, no-store
|
722
|
+
Pragma:
|
723
|
+
- no-cache
|
724
|
+
Expires:
|
725
|
+
- Thu, 01 Jan 1970 00:00:00
|
726
|
+
X-Trello-Version:
|
727
|
+
- 1.2213.0
|
728
|
+
X-Trello-Environment:
|
729
|
+
- Production
|
730
|
+
Set-Cookie:
|
731
|
+
- dsc=set_cookie_dsc; Path=/; Expires=Mon, 07 Sep 2020 15:46:31 GMT; Secure
|
732
|
+
Access-Control-Allow-Origin:
|
733
|
+
- "*"
|
734
|
+
Access-Control-Allow-Methods:
|
735
|
+
- GET, PUT, POST, DELETE
|
736
|
+
Access-Control-Allow-Headers:
|
737
|
+
- Authorization, Accept, Content-Type
|
738
|
+
Access-Control-Expose-Headers:
|
739
|
+
- x-rate-limit-api-key-interval-ms, x-rate-limit-api-key-max, x-rate-limit-api-key-remaining,
|
740
|
+
x-rate-limit-api-token-interval-ms, x-rate-limit-api-token-max, x-rate-limit-api-token-remaining
|
741
|
+
X-Rate-Limit-Api-Key-Interval-Ms:
|
742
|
+
- '10000'
|
743
|
+
X-Rate-Limit-Api-Key-Max:
|
744
|
+
- '300'
|
745
|
+
X-Rate-Limit-Api-Key-Remaining:
|
746
|
+
- '297'
|
747
|
+
X-Rate-Limit-Api-Token-Interval-Ms:
|
748
|
+
- '10000'
|
749
|
+
X-Rate-Limit-Api-Token-Max:
|
750
|
+
- '100'
|
751
|
+
X-Rate-Limit-Api-Token-Remaining:
|
752
|
+
- '97'
|
753
|
+
X-Rate-Limit-Member-Interval-Ms:
|
754
|
+
- '10000'
|
755
|
+
X-Rate-Limit-Member-Max:
|
756
|
+
- '200'
|
757
|
+
X-Rate-Limit-Member-Remaining:
|
758
|
+
- '196'
|
759
|
+
X-Server-Time:
|
760
|
+
- '1599234391579'
|
761
|
+
Content-Type:
|
762
|
+
- application/json; charset=utf-8
|
763
|
+
Date:
|
764
|
+
- Fri, 04 Sep 2020 15:46:31 GMT
|
765
|
+
X-Envoy-Upstream-Service-Time:
|
766
|
+
- '94'
|
767
|
+
Expect-Ct:
|
768
|
+
- report-uri="https://web-security-reports.services.atlassian.com/expect-ct-report/trello-edge",
|
769
|
+
max-age=86400
|
770
|
+
Strict-Transport-Security:
|
771
|
+
- max-age=63072000; preload
|
772
|
+
X-Content-Type-Options:
|
773
|
+
- nosniff
|
774
|
+
X-Xss-Protection:
|
775
|
+
- 1; mode=block
|
776
|
+
Server:
|
777
|
+
- globaledge-envoy
|
778
|
+
Transfer-Encoding:
|
779
|
+
- chunked
|
780
|
+
body:
|
781
|
+
encoding: ASCII-8BIT
|
782
|
+
string: "[]"
|
783
|
+
http_version: null
|
784
|
+
recorded_at: Fri, 04 Sep 2020 15:46:31 GMT
|
785
|
+
- request:
|
786
|
+
method: get
|
787
|
+
uri: https://api.trello.com/1/lists/5e94fa1248c5e41ad0464a7f/cards?filter=open&key=DEVELOPER_PUBLIC_KEY&token=MEMBER_TOKEN
|
788
|
+
body:
|
789
|
+
encoding: US-ASCII
|
790
|
+
string: ''
|
791
|
+
headers:
|
792
|
+
Accept:
|
793
|
+
- "*/*"
|
794
|
+
User-Agent:
|
795
|
+
- rest-client/2.1.0 (linux-gnu x86_64) ruby/2.6.6p146
|
796
|
+
Accept-Encoding:
|
797
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
798
|
+
Host:
|
799
|
+
- api.trello.com
|
800
|
+
response:
|
801
|
+
status:
|
802
|
+
code: 200
|
803
|
+
message: OK
|
804
|
+
headers:
|
805
|
+
X-Dns-Prefetch-Control:
|
806
|
+
- 'off'
|
807
|
+
X-Frame-Options:
|
808
|
+
- DENY
|
809
|
+
X-Download-Options:
|
810
|
+
- noopen
|
811
|
+
X-Permitted-Cross-Domain-Policies:
|
812
|
+
- none
|
813
|
+
Referrer-Policy:
|
814
|
+
- strict-origin-when-cross-origin
|
815
|
+
Surrogate-Control:
|
816
|
+
- no-store
|
817
|
+
Cache-Control:
|
818
|
+
- max-age=0, must-revalidate, no-cache, no-store
|
819
|
+
Pragma:
|
820
|
+
- no-cache
|
821
|
+
Expires:
|
822
|
+
- Thu, 01 Jan 1970 00:00:00
|
823
|
+
X-Trello-Version:
|
824
|
+
- 1.2213.0
|
825
|
+
X-Trello-Environment:
|
826
|
+
- Production
|
827
|
+
Set-Cookie:
|
828
|
+
- dsc=set_cookie_dsc; Path=/; Expires=Mon, 07 Sep 2020 15:46:32 GMT; Secure
|
829
|
+
Access-Control-Allow-Origin:
|
830
|
+
- "*"
|
831
|
+
Access-Control-Allow-Methods:
|
832
|
+
- GET, PUT, POST, DELETE
|
833
|
+
Access-Control-Allow-Headers:
|
834
|
+
- Authorization, Accept, Content-Type
|
835
|
+
Access-Control-Expose-Headers:
|
836
|
+
- x-rate-limit-api-key-interval-ms, x-rate-limit-api-key-max, x-rate-limit-api-key-remaining,
|
837
|
+
x-rate-limit-api-token-interval-ms, x-rate-limit-api-token-max, x-rate-limit-api-token-remaining
|
838
|
+
X-Rate-Limit-Api-Token-Interval-Ms:
|
839
|
+
- '10000'
|
840
|
+
X-Rate-Limit-Api-Token-Max:
|
841
|
+
- '100'
|
842
|
+
X-Rate-Limit-Api-Token-Remaining:
|
843
|
+
- '96'
|
844
|
+
X-Rate-Limit-Api-Key-Interval-Ms:
|
845
|
+
- '10000'
|
846
|
+
X-Rate-Limit-Api-Key-Max:
|
847
|
+
- '300'
|
848
|
+
X-Rate-Limit-Api-Key-Remaining:
|
849
|
+
- '296'
|
850
|
+
X-Rate-Limit-Member-Interval-Ms:
|
851
|
+
- '10000'
|
852
|
+
X-Rate-Limit-Member-Max:
|
853
|
+
- '200'
|
854
|
+
X-Rate-Limit-Member-Remaining:
|
855
|
+
- '195'
|
856
|
+
X-Server-Time:
|
857
|
+
- '1599234392247'
|
858
|
+
X-Trello-Actual-Fastget-Path:
|
859
|
+
- fast
|
860
|
+
Content-Type:
|
861
|
+
- application/json; charset=utf-8
|
862
|
+
Date:
|
863
|
+
- Fri, 04 Sep 2020 15:46:32 GMT
|
864
|
+
X-Envoy-Upstream-Service-Time:
|
865
|
+
- '86'
|
866
|
+
Expect-Ct:
|
867
|
+
- report-uri="https://web-security-reports.services.atlassian.com/expect-ct-report/trello-edge",
|
868
|
+
max-age=86400
|
869
|
+
Strict-Transport-Security:
|
870
|
+
- max-age=63072000; preload
|
871
|
+
X-Content-Type-Options:
|
872
|
+
- nosniff
|
873
|
+
X-Xss-Protection:
|
874
|
+
- 1; mode=block
|
875
|
+
Server:
|
876
|
+
- globaledge-envoy
|
877
|
+
Transfer-Encoding:
|
878
|
+
- chunked
|
879
|
+
body:
|
880
|
+
encoding: ASCII-8BIT
|
881
|
+
string: '[{"id":"5e94fd9443f25a7263b165d0","checkItemStates":null,"closed":false,"dateLastActivity":"2020-09-04T15:46:29.478Z","desc":"testing
|
882
|
+
card update!","descData":{"emoji":{}},"dueReminder":null,"idBoard":"5e94eaf386374970d06e4c89","idList":"5e94fa1248c5e41ad0464a7f","idMembersVoted":[],"idShort":2,"idAttachmentCover":null,"idLabels":["5e94eaf37669b225494161c7"],"manualCoverAttachment":false,"name":"Test
|
883
|
+
Trello::Card.update!","pos":16384,"shortLink":"xx9My9vC","isTemplate":false,"badges":{"attachmentsByType":{"trello":{"board":0,"card":0}},"location":false,"votes":0,"viewingMemberVoted":false,"subscribed":true,"fogbugz":"","checkItems":0,"checkItemsChecked":0,"checkItemsEarliestDue":null,"comments":0,"attachments":0,"description":true,"due":"2020-12-22T01:59:00.000Z","dueComplete":false,"start":null},"dueComplete":false,"due":"2020-12-22T01:59:00.000Z","idChecklists":[],"idMembers":["5e679b808e6e8828784b30e1"],"labels":[{"id":"5e94eaf37669b225494161c7","idBoard":"5e94eaf386374970d06e4c89","name":"","color":"orange"}],"shortUrl":"https://trello.com/c/xx9My9vC","start":null,"subscribed":true,"url":"https://trello.com/c/xx9My9vC/2-test-trellocardupdate","cover":{"idAttachment":null,"color":null,"idUploadedBackground":null,"size":"normal","brightness":"light"}}]'
|
884
|
+
http_version: null
|
885
|
+
recorded_at: Fri, 04 Sep 2020 15:46:32 GMT
|
886
|
+
recorded_with: VCR 5.1.0
|