slack-ruby-client 2.3.0 → 2.5.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 +4 -4
- data/.github/workflows/test.yml +22 -12
- data/.github/workflows/update_api.yml +1 -1
- data/.gitignore +1 -0
- data/.rubocop_todo.yml +43 -13
- data/CHANGELOG.md +19 -0
- data/CONTRIBUTING.md +7 -7
- data/Gemfile +1 -0
- data/README.md +68 -25
- data/bin/commands/admin_conversations.rb +21 -0
- data/bin/commands/admin_emoji.rb +1 -1
- data/bin/commands/admin_users.rb +4 -4
- data/bin/commands/admin_users_session.rb +1 -1
- data/bin/commands/admin_workflows.rb +6 -2
- data/bin/commands/admin_workflows_triggers_types_permissions.rb +31 -0
- data/bin/commands/apps_datastore.rb +46 -0
- data/bin/commands/assistant_threads.rb +45 -0
- data/bin/commands/bookmarks.rb +1 -0
- data/bin/commands/canvases.rb +40 -0
- data/bin/commands/canvases_access.rb +34 -0
- data/bin/commands/canvases_sections.rb +21 -0
- data/bin/commands/chat.rb +7 -3
- data/bin/commands/conversations.rb +6 -6
- data/bin/commands/conversations_canvases.rb +21 -0
- data/bin/commands/conversations_externalInvitePermissions.rb +22 -0
- data/bin/commands/conversations_requestSharedInvite.rb +48 -0
- data/bin/commands/files.rb +2 -1
- data/bin/commands/functions_distributions_permissions.rb +59 -0
- data/bin/commands/oauth.rb +2 -2
- data/bin/commands/oauth_v2.rb +2 -2
- data/bin/commands/reminders.rb +1 -1
- data/bin/commands/team_externalTeams.rb +35 -0
- data/bin/commands/usergroups.rb +5 -0
- data/bin/commands/usergroups_users.rb +2 -0
- data/bin/commands/users_discoverableContacts.rb +20 -0
- data/bin/commands/workflows_triggers_permissions.rb +60 -0
- data/examples/files_upload_v2/.env.example +1 -0
- data/examples/files_upload_v2/Gemfile +5 -0
- data/examples/files_upload_v2/README.md +13 -0
- data/examples/files_upload_v2/files_upload_v2.rb +37 -0
- data/examples/oauth_v2/.env.example +4 -0
- data/examples/oauth_v2/Gemfile +7 -0
- data/examples/oauth_v2/README.md +33 -0
- data/examples/oauth_v2/oauth_v2.rb +60 -0
- data/lib/slack/messages/formatting.rb +13 -0
- data/lib/slack/version.rb +1 -1
- data/lib/slack/web/api/endpoints/admin_conversations.rb +35 -0
- data/lib/slack/web/api/endpoints/admin_emoji.rb +1 -1
- data/lib/slack/web/api/endpoints/admin_users.rb +2 -2
- data/lib/slack/web/api/endpoints/admin_users_session.rb +2 -3
- data/lib/slack/web/api/endpoints/admin_workflows.rb +10 -2
- data/lib/slack/web/api/endpoints/admin_workflows_triggers_types_permissions.rb +41 -0
- data/lib/slack/web/api/endpoints/apps_datastore.rb +71 -0
- data/lib/slack/web/api/endpoints/assistant_threads.rb +68 -0
- data/lib/slack/web/api/endpoints/bookmarks.rb +2 -0
- data/lib/slack/web/api/endpoints/canvases.rb +52 -0
- data/lib/slack/web/api/endpoints/canvases_access.rb +47 -0
- data/lib/slack/web/api/endpoints/canvases_sections.rb +27 -0
- data/lib/slack/web/api/endpoints/chat.rb +12 -3
- data/lib/slack/web/api/endpoints/conversations.rb +5 -5
- data/lib/slack/web/api/endpoints/conversations_canvases.rb +26 -0
- data/lib/slack/web/api/endpoints/conversations_externalInvitePermissions.rb +31 -0
- data/lib/slack/web/api/endpoints/conversations_requestSharedInvite.rb +73 -0
- data/lib/slack/web/api/endpoints/dnd.rb +1 -0
- data/lib/slack/web/api/endpoints/files.rb +3 -1
- data/lib/slack/web/api/endpoints/functions_distributions_permissions.rb +80 -0
- data/lib/slack/web/api/endpoints/oauth.rb +2 -2
- data/lib/slack/web/api/endpoints/oauth_v2.rb +2 -2
- data/lib/slack/web/api/endpoints/reminders.rb +1 -1
- data/lib/slack/web/api/endpoints/team_externalTeams.rb +53 -0
- data/lib/slack/web/api/endpoints/usergroups.rb +10 -0
- data/lib/slack/web/api/endpoints/usergroups_users.rb +4 -0
- data/lib/slack/web/api/endpoints/users_discoverableContacts.rb +24 -0
- data/lib/slack/web/api/endpoints/workflows_triggers_permissions.rb +87 -0
- data/lib/slack/web/api/endpoints.rb +24 -0
- data/lib/slack/web/api/errors.rb +118 -8
- data/lib/slack/web/api/helpers/files.rb +87 -0
- data/lib/slack/web/api/helpers.rb +13 -0
- data/lib/slack/web/api/templates/method.erb +1 -0
- data/lib/slack/web/api/templates/method_spec.erb +6 -4
- data/lib/slack/web/client.rb +1 -0
- data/lib/slack/web/faraday/connection.rb +13 -26
- data/lib/slack/web/faraday/options.rb +24 -0
- data/lib/slack/web/faraday/request.rb +2 -1
- data/lib/slack-ruby-client.rb +2 -0
- data/slack-ruby-client.gemspec +2 -1
- metadata +52 -144
- data/screenshots/create-app.png +0 -0
- data/spec/fixtures/slack/web/429_error.yml +0 -81
- data/spec/fixtures/slack/web/auth_test_error.yml +0 -81
- data/spec/fixtures/slack/web/auth_test_success.yml +0 -81
- data/spec/fixtures/slack/web/conversations_info.yml +0 -167
- data/spec/fixtures/slack/web/conversations_setTopic.yml +0 -84
- data/spec/fixtures/slack/web/conversations_setTopic_one_page.yml +0 -172
- data/spec/fixtures/slack/web/conversations_setTopic_paginated.yml +0 -253
- data/spec/fixtures/slack/web/paginated_users_list.yml +0 -613
- data/spec/fixtures/slack/web/rtm_connect.yml +0 -391
- data/spec/fixtures/slack/web/users_info.yml +0 -214
- data/spec/fixtures/slack/web/users_list.yml +0 -133
- data/spec/fixtures/slack/web/views_open_error.yml +0 -83
- data/spec/integration/integration_spec.rb +0 -207
- data/spec/slack/config_spec.rb +0 -16
- data/spec/slack/events/config_spec.rb +0 -35
- data/spec/slack/events/request_spec.rb +0 -199
- data/spec/slack/messages/formatting_spec.rb +0 -124
- data/spec/slack/real_time/api/message_spec.rb +0 -20
- data/spec/slack/real_time/api/ping_spec.rb +0 -17
- data/spec/slack/real_time/api/typing_spec.rb +0 -19
- data/spec/slack/real_time/client_spec.rb +0 -601
- data/spec/slack/real_time/concurrency/clients/async_spec.rb +0 -16
- data/spec/slack/real_time/concurrency/it_behaves_like_a_realtime_socket.rb +0 -21
- data/spec/slack/real_time/concurrency/with_concurrency_spec.rb +0 -10
- data/spec/slack/real_time/concurrency/without_concurrency_spec.rb +0 -10
- data/spec/slack/real_time/event_handlers/bot_spec.rb +0 -47
- data/spec/slack/real_time/event_handlers/event_handlers_spec.rb +0 -16
- data/spec/slack/real_time/event_handlers/im_spec.rb +0 -51
- data/spec/slack/real_time/event_handlers/private_channel_spec.rb +0 -99
- data/spec/slack/real_time/event_handlers/public_channel_spec.rb +0 -123
- data/spec/slack/real_time/event_handlers/team_spec.rb +0 -63
- data/spec/slack/real_time/event_handlers/user_spec.rb +0 -65
- data/spec/slack/real_time/rtm_connect_spec.rb +0 -14
- data/spec/slack/real_time/stores/store_spec.rb +0 -50
- data/spec/slack/slack_spec.rb +0 -93
- data/spec/slack/version_spec.rb +0 -8
- data/spec/slack/web/api/endpoints/admin_analytics_spec.rb +0 -13
- data/spec/slack/web/api/endpoints/admin_apps_activities_spec.rb +0 -8
- data/spec/slack/web/api/endpoints/admin_apps_approved_spec.rb +0 -8
- data/spec/slack/web/api/endpoints/admin_apps_config_spec.rb +0 -18
- data/spec/slack/web/api/endpoints/admin_apps_requests_spec.rb +0 -13
- data/spec/slack/web/api/endpoints/admin_apps_restricted_spec.rb +0 -8
- data/spec/slack/web/api/endpoints/admin_apps_spec.rb +0 -18
- data/spec/slack/web/api/endpoints/admin_audit_anomaly_allow_spec.rb +0 -8
- data/spec/slack/web/api/endpoints/admin_auth_policy_spec.rb +0 -35
- data/spec/slack/web/api/endpoints/admin_barriers_spec.rb +0 -38
- data/spec/slack/web/api/endpoints/admin_conversations_ekm_spec.rb +0 -8
- data/spec/slack/web/api/endpoints/admin_conversations_restrictAccess_spec.rb +0 -32
- data/spec/slack/web/api/endpoints/admin_conversations_spec.rb +0 -133
- data/spec/slack/web/api/endpoints/admin_emoji_spec.rb +0 -37
- data/spec/slack/web/api/endpoints/admin_functions_permissions_spec.rb +0 -21
- data/spec/slack/web/api/endpoints/admin_functions_spec.rb +0 -13
- data/spec/slack/web/api/endpoints/admin_inviteRequests_approved_spec.rb +0 -8
- data/spec/slack/web/api/endpoints/admin_inviteRequests_denied_spec.rb +0 -8
- data/spec/slack/web/api/endpoints/admin_inviteRequests_spec.rb +0 -18
- data/spec/slack/web/api/endpoints/admin_roles_spec.rb +0 -30
- data/spec/slack/web/api/endpoints/admin_teams_admins_spec.rb +0 -13
- data/spec/slack/web/api/endpoints/admin_teams_owners_spec.rb +0 -13
- data/spec/slack/web/api/endpoints/admin_teams_settings_spec.rb +0 -53
- data/spec/slack/web/api/endpoints/admin_teams_spec.rb +0 -16
- data/spec/slack/web/api/endpoints/admin_usergroups_spec.rb +0 -37
- data/spec/slack/web/api/endpoints/admin_users_session_spec.rb +0 -41
- data/spec/slack/web/api/endpoints/admin_users_spec.rb +0 -67
- data/spec/slack/web/api/endpoints/admin_users_unsupportedVersions_spec.rb +0 -8
- data/spec/slack/web/api/endpoints/admin_workflows_collaborators_spec.rb +0 -24
- data/spec/slack/web/api/endpoints/admin_workflows_permissions_spec.rb +0 -13
- data/spec/slack/web/api/endpoints/admin_workflows_spec.rb +0 -13
- data/spec/slack/web/api/endpoints/api_spec.rb +0 -8
- data/spec/slack/web/api/endpoints/apps_activities_spec.rb +0 -13
- data/spec/slack/web/api/endpoints/apps_auth_external_spec.rb +0 -13
- data/spec/slack/web/api/endpoints/apps_connections_spec.rb +0 -8
- data/spec/slack/web/api/endpoints/apps_datastore_spec.rb +0 -45
- data/spec/slack/web/api/endpoints/apps_event_authorizations_spec.rb +0 -13
- data/spec/slack/web/api/endpoints/apps_manifest_spec.rb +0 -44
- data/spec/slack/web/api/endpoints/apps_spec.rb +0 -16
- data/spec/slack/web/api/endpoints/auth_spec.rb +0 -8
- data/spec/slack/web/api/endpoints/auth_teams_spec.rb +0 -8
- data/spec/slack/web/api/endpoints/bookmarks_spec.rb +0 -40
- data/spec/slack/web/api/endpoints/bots_spec.rb +0 -8
- data/spec/slack/web/api/endpoints/calls_participants_spec.rb +0 -24
- data/spec/slack/web/api/endpoints/calls_spec.rb +0 -31
- data/spec/slack/web/api/endpoints/chat_scheduledMessages_spec.rb +0 -8
- data/spec/slack/web/api/endpoints/chat_spec.rb +0 -134
- data/spec/slack/web/api/endpoints/conversations_spec.rb +0 -8
- data/spec/slack/web/api/endpoints/custom_specs/auth_spec.rb +0 -27
- data/spec/slack/web/api/endpoints/custom_specs/chat_spec.rb +0 -206
- data/spec/slack/web/api/endpoints/custom_specs/conversations_spec.rb +0 -13
- data/spec/slack/web/api/endpoints/custom_specs/dialog_spec.rb +0 -40
- data/spec/slack/web/api/endpoints/custom_specs/users_spec.rb +0 -38
- data/spec/slack/web/api/endpoints/custom_specs/views_spec.rb +0 -112
- data/spec/slack/web/api/endpoints/dialog_spec.rb +0 -14
- data/spec/slack/web/api/endpoints/dnd_spec.rb +0 -13
- data/spec/slack/web/api/endpoints/emoji_spec.rb +0 -8
- data/spec/slack/web/api/endpoints/files_comments_spec.rb +0 -16
- data/spec/slack/web/api/endpoints/files_remote_spec.rb +0 -24
- data/spec/slack/web/api/endpoints/files_spec.rb +0 -57
- data/spec/slack/web/api/endpoints/functions_spec.rb +0 -28
- data/spec/slack/web/api/endpoints/functions_workflows_steps_responses_spec.rb +0 -13
- data/spec/slack/web/api/endpoints/functions_workflows_steps_spec.rb +0 -13
- data/spec/slack/web/api/endpoints/migration_spec.rb +0 -13
- data/spec/slack/web/api/endpoints/oauth_spec.rb +0 -8
- data/spec/slack/web/api/endpoints/oauth_v2_spec.rb +0 -16
- data/spec/slack/web/api/endpoints/openid_connect_spec.rb +0 -8
- data/spec/slack/web/api/endpoints/pins_spec.rb +0 -23
- data/spec/slack/web/api/endpoints/reactions_spec.rb +0 -24
- data/spec/slack/web/api/endpoints/reminders_spec.rb +0 -31
- data/spec/slack/web/api/endpoints/rtm_spec.rb +0 -8
- data/spec/slack/web/api/endpoints/search_spec.rb +0 -23
- data/spec/slack/web/api/endpoints/stars_spec.rb +0 -8
- data/spec/slack/web/api/endpoints/team_billing_spec.rb +0 -8
- data/spec/slack/web/api/endpoints/team_preferences_spec.rb +0 -8
- data/spec/slack/web/api/endpoints/team_profile_spec.rb +0 -8
- data/spec/slack/web/api/endpoints/team_spec.rb +0 -8
- data/spec/slack/web/api/endpoints/tooling_tokens_spec.rb +0 -13
- data/spec/slack/web/api/endpoints/usergroups_spec.rb +0 -28
- data/spec/slack/web/api/endpoints/usergroups_users_spec.rb +0 -21
- data/spec/slack/web/api/endpoints/users_admin_spec.rb +0 -18
- data/spec/slack/web/api/endpoints/users_prefs_spec.rb +0 -8
- data/spec/slack/web/api/endpoints/users_profile_spec.rb +0 -14
- data/spec/slack/web/api/endpoints/users_spec.rb +0 -8
- data/spec/slack/web/api/endpoints/views_spec.rb +0 -65
- data/spec/slack/web/api/endpoints/workflows_spec.rb +0 -34
- data/spec/slack/web/api/error_spec.rb +0 -14
- data/spec/slack/web/api/errors/slack_error_spec.rb +0 -33
- data/spec/slack/web/api/mixins/conversations_list_spec.rb +0 -21
- data/spec/slack/web/api/mixins/conversations_spec.rb +0 -45
- data/spec/slack/web/api/mixins/users_spec.rb +0 -52
- data/spec/slack/web/api/options_spec.rb +0 -69
- data/spec/slack/web/api/pagination/cursor_spec.rb +0 -102
- data/spec/slack/web/client_spec.rb +0 -359
- data/spec/slack/web/faraday/request_spec.rb +0 -80
- data/spec/slack/web/faraday/response/raise_error_spec.rb +0 -86
- data/spec/spec_helper.rb +0 -30
- data/spec/support/queue_with_timeout.rb +0 -35
- data/spec/support/real_time/concurrency/mock.rb +0 -31
- data/spec/support/real_time/connected_client.rb +0 -21
- data/spec/support/real_time/event.rb +0 -12
- data/spec/support/real_time/loaded_client.rb +0 -120
- data/spec/support/token.rb +0 -11
- data/spec/support/vcr.rb +0 -45
@@ -1,81 +0,0 @@
|
|
1
|
-
---
|
2
|
-
http_interactions:
|
3
|
-
- request:
|
4
|
-
method: post
|
5
|
-
uri: https://slack.com/api/auth.test
|
6
|
-
body:
|
7
|
-
encoding: UTF-8
|
8
|
-
string: ''
|
9
|
-
headers:
|
10
|
-
Accept:
|
11
|
-
- application/json; charset=utf-8
|
12
|
-
User-Agent:
|
13
|
-
- Slack Ruby Client/0.18.0
|
14
|
-
Authorization:
|
15
|
-
- Bearer <SLACK_API_TOKEN>
|
16
|
-
Content-Type:
|
17
|
-
- application/x-www-form-urlencoded
|
18
|
-
Accept-Encoding:
|
19
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
20
|
-
response:
|
21
|
-
status:
|
22
|
-
code: 200
|
23
|
-
message: OK
|
24
|
-
headers:
|
25
|
-
Date:
|
26
|
-
- Sat, 04 Dec 2021 20:13:19 GMT
|
27
|
-
Server:
|
28
|
-
- Apache
|
29
|
-
Access-Control-Allow-Origin:
|
30
|
-
- "*"
|
31
|
-
Referrer-Policy:
|
32
|
-
- no-referrer
|
33
|
-
X-Slack-Backend:
|
34
|
-
- r
|
35
|
-
Strict-Transport-Security:
|
36
|
-
- max-age=31536000; includeSubDomains; preload
|
37
|
-
Access-Control-Allow-Headers:
|
38
|
-
- slack-route, x-slack-version-ts, x-b3-traceid, x-b3-spanid, x-b3-parentspanid,
|
39
|
-
x-b3-sampled, x-b3-flags
|
40
|
-
Access-Control-Expose-Headers:
|
41
|
-
- x-slack-req-id, retry-after
|
42
|
-
X-Oauth-Scopes:
|
43
|
-
- identify,read,post,client,apps
|
44
|
-
Expires:
|
45
|
-
- Mon, 26 Jul 1997 05:00:00 GMT
|
46
|
-
Cache-Control:
|
47
|
-
- private, no-cache, no-store, must-revalidate
|
48
|
-
Pragma:
|
49
|
-
- no-cache
|
50
|
-
X-Xss-Protection:
|
51
|
-
- '0'
|
52
|
-
X-Content-Type-Options:
|
53
|
-
- nosniff
|
54
|
-
X-Slack-Req-Id:
|
55
|
-
- 19b143ea43a655dcdc6c3debd59c41c0
|
56
|
-
Vary:
|
57
|
-
- Accept-Encoding
|
58
|
-
Content-Length:
|
59
|
-
- '165'
|
60
|
-
Content-Type:
|
61
|
-
- application/json; charset=utf-8
|
62
|
-
X-Envoy-Upstream-Service-Time:
|
63
|
-
- '18'
|
64
|
-
X-Backend:
|
65
|
-
- main_normal main_bedrock_normal_with_overflow main_canary_with_overflow main_bedrock_canary_with_overflow
|
66
|
-
main_control_with_overflow main_bedrock_control_with_overflow
|
67
|
-
X-Server:
|
68
|
-
- slack-www-hhvm-main-iad-d5j5
|
69
|
-
X-Slack-Shared-Secret-Outcome:
|
70
|
-
- no-match
|
71
|
-
Via:
|
72
|
-
- envoy-www-iad-tdcc, envoy-edge-iad-olsk
|
73
|
-
X-Edge-Backend:
|
74
|
-
- envoy-www
|
75
|
-
X-Slack-Edge-Shared-Secret-Outcome:
|
76
|
-
- no-match
|
77
|
-
body:
|
78
|
-
encoding: UTF-8
|
79
|
-
string: '{"ok":true,"url":"https:\/\/dblockdotorg.slack.com\/","team":"dblock","user":"travis-ci","team_id":"T04KB5WQH","user_id":"U0J1GAHN1","bot_id":"B0J1L75DY","is_enterprise_install":false}'
|
80
|
-
recorded_at: Sat, 19 Jan 2019 21:25:48 GMT
|
81
|
-
recorded_with: VCR 6.0.0
|
@@ -1,81 +0,0 @@
|
|
1
|
-
---
|
2
|
-
http_interactions:
|
3
|
-
- request:
|
4
|
-
method: post
|
5
|
-
uri: https://slack.com/api/auth.test
|
6
|
-
body:
|
7
|
-
encoding: UTF-8
|
8
|
-
string: ''
|
9
|
-
headers:
|
10
|
-
Accept:
|
11
|
-
- application/json; charset=utf-8
|
12
|
-
User-Agent:
|
13
|
-
- Slack Ruby Client/0.18.0
|
14
|
-
Authorization:
|
15
|
-
- Bearer <SLACK_API_TOKEN>
|
16
|
-
Content-Length:
|
17
|
-
- '0'
|
18
|
-
Accept-Encoding:
|
19
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
20
|
-
response:
|
21
|
-
status:
|
22
|
-
code: 200
|
23
|
-
message: OK
|
24
|
-
headers:
|
25
|
-
Date:
|
26
|
-
- Sat, 04 Dec 2021 20:13:18 GMT
|
27
|
-
Server:
|
28
|
-
- Apache
|
29
|
-
Access-Control-Allow-Origin:
|
30
|
-
- "*"
|
31
|
-
Referrer-Policy:
|
32
|
-
- no-referrer
|
33
|
-
X-Slack-Backend:
|
34
|
-
- r
|
35
|
-
Strict-Transport-Security:
|
36
|
-
- max-age=31536000; includeSubDomains; preload
|
37
|
-
Access-Control-Allow-Headers:
|
38
|
-
- slack-route, x-slack-version-ts, x-b3-traceid, x-b3-spanid, x-b3-parentspanid,
|
39
|
-
x-b3-sampled, x-b3-flags
|
40
|
-
Access-Control-Expose-Headers:
|
41
|
-
- x-slack-req-id, retry-after
|
42
|
-
Expires:
|
43
|
-
- Mon, 26 Jul 1997 05:00:00 GMT
|
44
|
-
Cache-Control:
|
45
|
-
- private, no-cache, no-store, must-revalidate
|
46
|
-
Pragma:
|
47
|
-
- no-cache
|
48
|
-
X-Robots-Tag:
|
49
|
-
- noindex,nofollow
|
50
|
-
X-Xss-Protection:
|
51
|
-
- '0'
|
52
|
-
X-Content-Type-Options:
|
53
|
-
- nosniff
|
54
|
-
X-Slack-Req-Id:
|
55
|
-
- ad5ac4ccd453f8d6e46e1cc41d6d8a7a
|
56
|
-
Vary:
|
57
|
-
- Accept-Encoding
|
58
|
-
Content-Length:
|
59
|
-
- '53'
|
60
|
-
Content-Type:
|
61
|
-
- application/json; charset=utf-8
|
62
|
-
X-Envoy-Upstream-Service-Time:
|
63
|
-
- '5'
|
64
|
-
X-Backend:
|
65
|
-
- main_normal main_bedrock_normal_with_overflow main_canary_with_overflow main_bedrock_canary_with_overflow
|
66
|
-
main_control_with_overflow main_bedrock_control_with_overflow
|
67
|
-
X-Server:
|
68
|
-
- slack-www-hhvm-main-iad-6qbu
|
69
|
-
X-Slack-Shared-Secret-Outcome:
|
70
|
-
- no-match
|
71
|
-
Via:
|
72
|
-
- envoy-www-iad-fsrl, envoy-edge-iad-m7rj
|
73
|
-
X-Edge-Backend:
|
74
|
-
- envoy-www
|
75
|
-
X-Slack-Edge-Shared-Secret-Outcome:
|
76
|
-
- no-match
|
77
|
-
body:
|
78
|
-
encoding: UTF-8
|
79
|
-
string: '{"ok":false,"error":"not_authed"}'
|
80
|
-
recorded_at: Sat, 19 Jan 2019 21:25:48 GMT
|
81
|
-
recorded_with: VCR 6.0.0
|
@@ -1,81 +0,0 @@
|
|
1
|
-
---
|
2
|
-
http_interactions:
|
3
|
-
- request:
|
4
|
-
method: post
|
5
|
-
uri: https://slack.com/api/auth.test
|
6
|
-
body:
|
7
|
-
encoding: UTF-8
|
8
|
-
string: ''
|
9
|
-
headers:
|
10
|
-
Accept:
|
11
|
-
- application/json; charset=utf-8
|
12
|
-
User-Agent:
|
13
|
-
- Slack Ruby Client/0.18.0
|
14
|
-
Authorization:
|
15
|
-
- Bearer <SLACK_API_TOKEN>
|
16
|
-
Content-Type:
|
17
|
-
- application/x-www-form-urlencoded
|
18
|
-
Accept-Encoding:
|
19
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
20
|
-
response:
|
21
|
-
status:
|
22
|
-
code: 200
|
23
|
-
message: OK
|
24
|
-
headers:
|
25
|
-
Date:
|
26
|
-
- Sat, 04 Dec 2021 20:13:19 GMT
|
27
|
-
Server:
|
28
|
-
- Apache
|
29
|
-
Access-Control-Allow-Origin:
|
30
|
-
- "*"
|
31
|
-
Referrer-Policy:
|
32
|
-
- no-referrer
|
33
|
-
X-Slack-Backend:
|
34
|
-
- r
|
35
|
-
Strict-Transport-Security:
|
36
|
-
- max-age=31536000; includeSubDomains; preload
|
37
|
-
Access-Control-Allow-Headers:
|
38
|
-
- slack-route, x-slack-version-ts, x-b3-traceid, x-b3-spanid, x-b3-parentspanid,
|
39
|
-
x-b3-sampled, x-b3-flags
|
40
|
-
Access-Control-Expose-Headers:
|
41
|
-
- x-slack-req-id, retry-after
|
42
|
-
X-Oauth-Scopes:
|
43
|
-
- identify,read,post,client,apps
|
44
|
-
Expires:
|
45
|
-
- Mon, 26 Jul 1997 05:00:00 GMT
|
46
|
-
Cache-Control:
|
47
|
-
- private, no-cache, no-store, must-revalidate
|
48
|
-
Pragma:
|
49
|
-
- no-cache
|
50
|
-
X-Xss-Protection:
|
51
|
-
- '0'
|
52
|
-
X-Content-Type-Options:
|
53
|
-
- nosniff
|
54
|
-
X-Slack-Req-Id:
|
55
|
-
- cf2877c6fab8f3aa7747f2e07d0b5fd5
|
56
|
-
Vary:
|
57
|
-
- Accept-Encoding
|
58
|
-
Content-Length:
|
59
|
-
- '165'
|
60
|
-
Content-Type:
|
61
|
-
- application/json; charset=utf-8
|
62
|
-
X-Envoy-Upstream-Service-Time:
|
63
|
-
- '18'
|
64
|
-
X-Backend:
|
65
|
-
- main_normal main_bedrock_normal_with_overflow main_canary_with_overflow main_bedrock_canary_with_overflow
|
66
|
-
main_control_with_overflow main_bedrock_control_with_overflow
|
67
|
-
X-Server:
|
68
|
-
- slack-www-hhvm-main-iad-i2dg
|
69
|
-
X-Slack-Shared-Secret-Outcome:
|
70
|
-
- no-match
|
71
|
-
Via:
|
72
|
-
- envoy-www-iad-pwei, envoy-edge-iad-p7fn
|
73
|
-
X-Edge-Backend:
|
74
|
-
- envoy-www
|
75
|
-
X-Slack-Edge-Shared-Secret-Outcome:
|
76
|
-
- no-match
|
77
|
-
body:
|
78
|
-
encoding: UTF-8
|
79
|
-
string: '{"ok":true,"url":"https:\/\/rubybot.slack.com\/","team":"team_name","user":"user_name","team_id":"TDEADBEEF","user_id":"UBAADFOOD","bot_id":"B0J1L75DY","is_enterprise_install":false}'
|
80
|
-
recorded_at: Sat, 19 Jan 2019 21:25:48 GMT
|
81
|
-
recorded_with: VCR 6.0.0
|
@@ -1,167 +0,0 @@
|
|
1
|
-
---
|
2
|
-
http_interactions:
|
3
|
-
- request:
|
4
|
-
method: post
|
5
|
-
uri: https://slack.com/api/conversations.list
|
6
|
-
body:
|
7
|
-
encoding: UTF-8
|
8
|
-
string: limit=100
|
9
|
-
headers:
|
10
|
-
Accept:
|
11
|
-
- application/json; charset=utf-8
|
12
|
-
User-Agent:
|
13
|
-
- Slack Ruby Client/0.18.0
|
14
|
-
Authorization:
|
15
|
-
- Bearer <SLACK_API_TOKEN>
|
16
|
-
Content-Type:
|
17
|
-
- application/x-www-form-urlencoded
|
18
|
-
Accept-Encoding:
|
19
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
20
|
-
response:
|
21
|
-
status:
|
22
|
-
code: 200
|
23
|
-
message: OK
|
24
|
-
headers:
|
25
|
-
Date:
|
26
|
-
- Sat, 04 Dec 2021 20:13:19 GMT
|
27
|
-
Server:
|
28
|
-
- Apache
|
29
|
-
Access-Control-Allow-Origin:
|
30
|
-
- "*"
|
31
|
-
Referrer-Policy:
|
32
|
-
- no-referrer
|
33
|
-
X-Slack-Backend:
|
34
|
-
- r
|
35
|
-
Strict-Transport-Security:
|
36
|
-
- max-age=31536000; includeSubDomains; preload
|
37
|
-
Access-Control-Allow-Headers:
|
38
|
-
- slack-route, x-slack-version-ts, x-b3-traceid, x-b3-spanid, x-b3-parentspanid,
|
39
|
-
x-b3-sampled, x-b3-flags
|
40
|
-
Access-Control-Expose-Headers:
|
41
|
-
- x-slack-req-id, retry-after
|
42
|
-
X-Oauth-Scopes:
|
43
|
-
- identify,read,post,client,apps
|
44
|
-
X-Accepted-Oauth-Scopes:
|
45
|
-
- channels:read,groups:read,mpim:read,im:read,read
|
46
|
-
Expires:
|
47
|
-
- Mon, 26 Jul 1997 05:00:00 GMT
|
48
|
-
Cache-Control:
|
49
|
-
- private, no-cache, no-store, must-revalidate
|
50
|
-
Pragma:
|
51
|
-
- no-cache
|
52
|
-
X-Xss-Protection:
|
53
|
-
- '0'
|
54
|
-
X-Content-Type-Options:
|
55
|
-
- nosniff
|
56
|
-
X-Slack-Req-Id:
|
57
|
-
- a7d2a125585a8314bc3ea01b030e7bea
|
58
|
-
Vary:
|
59
|
-
- Accept-Encoding
|
60
|
-
Content-Length:
|
61
|
-
- '2876'
|
62
|
-
Content-Type:
|
63
|
-
- application/json; charset=utf-8
|
64
|
-
X-Envoy-Upstream-Service-Time:
|
65
|
-
- '37'
|
66
|
-
X-Backend:
|
67
|
-
- main_normal main_bedrock_normal_with_overflow main_canary_with_overflow main_bedrock_canary_with_overflow
|
68
|
-
main_control_with_overflow main_bedrock_control_with_overflow
|
69
|
-
X-Server:
|
70
|
-
- slack-www-hhvm-main-iad-udgm
|
71
|
-
X-Slack-Shared-Secret-Outcome:
|
72
|
-
- no-match
|
73
|
-
Via:
|
74
|
-
- envoy-www-iad-c6gk, envoy-edge-iad-u3z8
|
75
|
-
X-Edge-Backend:
|
76
|
-
- envoy-www
|
77
|
-
X-Slack-Edge-Shared-Secret-Outcome:
|
78
|
-
- no-match
|
79
|
-
body:
|
80
|
-
encoding: UTF-8
|
81
|
-
string: '{"ok":true,"channels":[{"id":"G0K7EV5A7","name":"mpdm-dblock--rubybot--player1-1","is_group":true,"created":1453561861,"creator":"U04KB5WQR","is_archived":false,"is_mpim":true,"members":["U04KB5WQR","U0HLFUZLJ","U07518DTL"],"topic":{"value":"Group
|
82
|
-
messaging","creator":"U04KB5WQR","last_set":1453561861},"purpose":{"value":"Group
|
83
|
-
messaging with: @dblock @rubybot @player1","creator":"U04KB5WQR","last_set":1453561861}}]}'
|
84
|
-
recorded_at: Sat, 19 Jan 2019 21:25:48 GMT
|
85
|
-
- request:
|
86
|
-
method: post
|
87
|
-
uri: https://slack.com/api/conversations.info
|
88
|
-
body:
|
89
|
-
encoding: UTF-8
|
90
|
-
string: channel=G0K7EV5A7
|
91
|
-
headers:
|
92
|
-
Accept:
|
93
|
-
- application/json; charset=utf-8
|
94
|
-
User-Agent:
|
95
|
-
- Slack Ruby Client/0.18.0
|
96
|
-
Authorization:
|
97
|
-
- Bearer <SLACK_API_TOKEN>
|
98
|
-
Content-Type:
|
99
|
-
- application/x-www-form-urlencoded
|
100
|
-
Accept-Encoding:
|
101
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
102
|
-
response:
|
103
|
-
status:
|
104
|
-
code: 200
|
105
|
-
message: OK
|
106
|
-
headers:
|
107
|
-
Date:
|
108
|
-
- Sat, 04 Dec 2021 20:13:19 GMT
|
109
|
-
Server:
|
110
|
-
- Apache
|
111
|
-
Access-Control-Allow-Origin:
|
112
|
-
- "*"
|
113
|
-
Referrer-Policy:
|
114
|
-
- no-referrer
|
115
|
-
X-Slack-Backend:
|
116
|
-
- r
|
117
|
-
Strict-Transport-Security:
|
118
|
-
- max-age=31536000; includeSubDomains; preload
|
119
|
-
Access-Control-Allow-Headers:
|
120
|
-
- slack-route, x-slack-version-ts, x-b3-traceid, x-b3-spanid, x-b3-parentspanid,
|
121
|
-
x-b3-sampled, x-b3-flags
|
122
|
-
Access-Control-Expose-Headers:
|
123
|
-
- x-slack-req-id, retry-after
|
124
|
-
X-Oauth-Scopes:
|
125
|
-
- identify,read,post,client,apps
|
126
|
-
X-Accepted-Oauth-Scopes:
|
127
|
-
- channels:read,groups:read,mpim:read,im:read,read
|
128
|
-
Expires:
|
129
|
-
- Mon, 26 Jul 1997 05:00:00 GMT
|
130
|
-
Cache-Control:
|
131
|
-
- private, no-cache, no-store, must-revalidate
|
132
|
-
Pragma:
|
133
|
-
- no-cache
|
134
|
-
X-Xss-Protection:
|
135
|
-
- '0'
|
136
|
-
X-Content-Type-Options:
|
137
|
-
- nosniff
|
138
|
-
X-Slack-Req-Id:
|
139
|
-
- 49648bce1e0db728c12429c53dafc281
|
140
|
-
Vary:
|
141
|
-
- Accept-Encoding
|
142
|
-
Content-Length:
|
143
|
-
- '1409'
|
144
|
-
Content-Type:
|
145
|
-
- application/json; charset=utf-8
|
146
|
-
X-Envoy-Upstream-Service-Time:
|
147
|
-
- '54'
|
148
|
-
X-Backend:
|
149
|
-
- main_normal main_bedrock_normal_with_overflow main_canary_with_overflow main_bedrock_canary_with_overflow
|
150
|
-
main_control_with_overflow main_bedrock_control_with_overflow
|
151
|
-
X-Server:
|
152
|
-
- slack-www-hhvm-main-iad-i469
|
153
|
-
X-Slack-Shared-Secret-Outcome:
|
154
|
-
- no-match
|
155
|
-
Via:
|
156
|
-
- envoy-www-iad-1pnu, envoy-edge-iad-pbh1
|
157
|
-
X-Edge-Backend:
|
158
|
-
- envoy-www
|
159
|
-
X-Slack-Edge-Shared-Secret-Outcome:
|
160
|
-
- no-match
|
161
|
-
body:
|
162
|
-
encoding: UTF-8
|
163
|
-
string: '{"ok":true,"channel":{"id":"G0K7EV5A7","name":"mpdm-dblock--rubybot--player1-1","is_group":true,"created":1453561861,"creator":"U04KB5WQR","is_archived":false,"is_mpim":true,"is_open":false,"last_read":"0000000000.000000","latest":null,"unread_count":0,"unread_count_display":0,"members":["U04KB5WQR","U0HLFUZLJ","U07518DTL"],"topic":{"value":"Group
|
164
|
-
messaging","creator":"U04KB5WQR","last_set":1453561861},"purpose":{"value":"Group
|
165
|
-
messaging with: @dblock @rubybot @player1","creator":"U04KB5WQR","last_set":1453561861}}}'
|
166
|
-
recorded_at: Sat, 19 Jan 2019 21:25:48 GMT
|
167
|
-
recorded_with: VCR 6.0.0
|
@@ -1,84 +0,0 @@
|
|
1
|
-
---
|
2
|
-
http_interactions:
|
3
|
-
- request:
|
4
|
-
method: post
|
5
|
-
uri: https://slack.com/api/conversations.setTopic
|
6
|
-
body:
|
7
|
-
encoding: UTF-8
|
8
|
-
string: channel=C019CV63UTC&topic=new+topic
|
9
|
-
headers:
|
10
|
-
Accept:
|
11
|
-
- application/json; charset=utf-8
|
12
|
-
User-Agent:
|
13
|
-
- Slack Ruby Client/0.18.0
|
14
|
-
Authorization:
|
15
|
-
- Bearer <SLACK_API_TOKEN>
|
16
|
-
Content-Type:
|
17
|
-
- application/x-www-form-urlencoded
|
18
|
-
Accept-Encoding:
|
19
|
-
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
20
|
-
response:
|
21
|
-
status:
|
22
|
-
code: 200
|
23
|
-
message: OK
|
24
|
-
headers:
|
25
|
-
Date:
|
26
|
-
- Sat, 04 Dec 2021 20:13:20 GMT
|
27
|
-
Server:
|
28
|
-
- Apache
|
29
|
-
Access-Control-Allow-Origin:
|
30
|
-
- "*"
|
31
|
-
Referrer-Policy:
|
32
|
-
- no-referrer
|
33
|
-
X-Slack-Backend:
|
34
|
-
- r
|
35
|
-
Strict-Transport-Security:
|
36
|
-
- max-age=31536000; includeSubDomains; preload
|
37
|
-
Access-Control-Allow-Headers:
|
38
|
-
- slack-route, x-slack-version-ts, x-b3-traceid, x-b3-spanid, x-b3-parentspanid,
|
39
|
-
x-b3-sampled, x-b3-flags
|
40
|
-
Access-Control-Expose-Headers:
|
41
|
-
- x-slack-req-id, retry-after
|
42
|
-
X-Oauth-Scopes:
|
43
|
-
- identify,read,post,client,apps
|
44
|
-
X-Accepted-Oauth-Scopes:
|
45
|
-
- channels:write,groups:write,mpim:write,im:write,post
|
46
|
-
Expires:
|
47
|
-
- Mon, 26 Jul 1997 05:00:00 GMT
|
48
|
-
Cache-Control:
|
49
|
-
- private, no-cache, no-store, must-revalidate
|
50
|
-
Pragma:
|
51
|
-
- no-cache
|
52
|
-
X-Xss-Protection:
|
53
|
-
- '0'
|
54
|
-
X-Content-Type-Options:
|
55
|
-
- nosniff
|
56
|
-
X-Slack-Req-Id:
|
57
|
-
- 5182aebbedf4f2e23f64c01fe59ad5c8
|
58
|
-
Vary:
|
59
|
-
- Accept-Encoding
|
60
|
-
Content-Length:
|
61
|
-
- '347'
|
62
|
-
Content-Type:
|
63
|
-
- application/json; charset=utf-8
|
64
|
-
X-Envoy-Upstream-Service-Time:
|
65
|
-
- '86'
|
66
|
-
X-Backend:
|
67
|
-
- main_normal main_bedrock_normal_with_overflow main_canary_with_overflow main_bedrock_canary_with_overflow
|
68
|
-
main_control_with_overflow main_bedrock_control_with_overflow
|
69
|
-
X-Server:
|
70
|
-
- slack-www-hhvm-main-iad-gfe5
|
71
|
-
X-Slack-Shared-Secret-Outcome:
|
72
|
-
- no-match
|
73
|
-
Via:
|
74
|
-
- envoy-www-iad-oyan, envoy-edge-iad-6ld3
|
75
|
-
X-Edge-Backend:
|
76
|
-
- envoy-www
|
77
|
-
X-Slack-Edge-Shared-Secret-Outcome:
|
78
|
-
- no-match
|
79
|
-
body:
|
80
|
-
encoding: UTF-8
|
81
|
-
string: '{"ok":true,"channel":{"id":"C019CV63UTC","name":"topic","is_channel":true,"is_group":false,"is_im":false,"is_mpim":false,"is_private":false,"created":1598276769,"is_archived":false,"is_general":false,"unlinked":0,"name_normalized":"topic","is_shared":false,"is_org_shared":false,"is_pending_ext_shared":false,"pending_shared":[],"parent_conversation":null,"creator":"U04KB5WQR","is_ext_shared":false,"shared_team_ids":["T04KB5WQH"],"pending_connected_team_ids":[],"is_member":true,"last_read":"1638646407.000600","topic":{"value":"new
|
82
|
-
topic","creator":"U0J1GAHN1","last_set":1638648800},"purpose":{"value":"","creator":"","last_set":0},"previous_names":[]}}'
|
83
|
-
recorded_at: Sat, 19 Jan 2019 21:25:48 GMT
|
84
|
-
recorded_with: VCR 6.0.0
|