slack-ruby-client
slack-ruby-client copied to clipboard
A Ruby and command-line client for the Slack Web, Real Time Messaging and Event APIs.
Many times I am getting Broken pipe error because of which the msg sent by the server is not received in Slack channel. How can I fix this issue? Stack...
Following up on https://github.com/slack-ruby/slack-ruby-client/pull/279 adjusting the ping logger level for the offline case to debug. Together with https://github.com/slack-ruby/slack-ruby-bot/pull/229 suppresses a lot of logger noise.
Hello Slack Team, I'm not sure if this is the right forum for this question, but for users of this gem, is there a recommended setting for timeout? I have...
Hello, I've spent a few hours putting together what I think is a fairly good prototype for composing BlockKit-based messages in Ruby. Currently, it has what I personally need from...
Tried upgrading from 0.13.1 to 0.14.2 yesterday. Ran into the issue referenced in https://github.com/slack-ruby/slack-ruby-client/issues/272 so rolled back to 0.14.1. Everything seemed fine for about an hour until the bot crashed....
In some of the more recent Web API methods the most relevant error information is given in the `response_metadata`. For instance here's an example of Slack's response body for a...
https://github.com/slackapi/slack-api-specs
When running `rake`, warn that endpoints are out of date, and we need to re-generate an update.
With the introduction of the Events API a couple years ago RTM is no longer the only way to build a Slack app — many apps use the Web API...
``` message = client.files_upload( channels: '\#dev', as_user: true, file: UploadIO.new('./test.txt', 'text/plain'), title: 'test.txt', filename: 'test.txt', initial_comment: 'testing' ) File.open('./test.txt').size # 27 message.file.size # 35 message.file["size"] # 27 ``` `message.file.size` is...