slack
Version, currently 0.10.111 versions
github.com/manastech/crystal_slack
Parse Slack slash commands or send incoming web hooks from Crystal
19 stars
1 dependent
License: MIT
Installation
# Add this to your shard.yml
dependencies:
slack:
github: manastech/crystal_slack
version: ~> 0.10.1Then run:
shards installshard.yml
- Crystal
- no constraint declared
- Author
- Ary Borenszweig <aborenszweig@manas.com.ar>
Dependencies
Development Dependencies
- webmock~> 0.12.1github: manastech/webmock.crdev
README
# crystal_slack
[](https://travis-ci.org/manastech/crystal_slack)
Access [Slack API's](https://api.slack.com/) using [Crystal](http://crystal-lang.org).
## Shards
```yaml
slack:
github: "manastech/crystal_slack"
```
## Usage
You can get a Slack::SlashCommand from an HTTP::Request or its body:
```crystal
require "slack"
request = HTTP::Request.new "POST", "/", body: "token=..."
command = Slack::SlashCommand.from_request(request)
puts command.text
```
You can create a message and send it using either webhooks or the `chat.postMessage` API:
```crystal
require "slack"
message = Slack::Message.new("some_text", channel: "some_channel")
# send to webhook
message.send_to_hook "https://hooks.slack.com/services/..."
# send using the chat.postMessage API
api = Slack::API.new "some_token"
api.post_message(message)
```
More complex messages are supported. Please check the Message class.
You can also get the users and channels given an token.
## Todo
Lots of API methods are missing!
## Contributing
1. Fork it ( https://github.com/manastech/crystal_slack/fork )
2. Create your feature branch (git checkout -b my-new-feature)
3. Commit your changes (git commit -am 'Add some feature')
4. Push to the branch (git push origin my-new-feature)
5. Create a new Pull Request
Documentation
Built from the current release. The first visit to a release nobody has asked for starts its build.
Links
This release
- Version
0.10.1- Tagged
- Mar 5, 2021
- Commit
4e1797f26fa9- Indexed
- yes
Dependents
Repository
github.com/manastech/crystal_slack
Metadata
- Created
- Aug 12, 2026
- Updated
- Aug 12, 2026
- Synced
- Aug 12, 2026
- Versions
- 11