Popularity
7.6
Stable
Activity
2.3
-
19
14
9

Programming language: Crystal
License: MIT License
Tags: Third-party APIs    
Latest version: v0.10.0

crystal_slack alternatives and similar shards

Based on the "Third-party APIs" category.
Alternatively, view crystal_slack alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of crystal_slack or a related project?

Add another 'Third-party APIs' Shard

README

crystal_slack

Build Status

Access Slack API's using Crystal.

Shards

slack:
  github: "manastech/crystal_slack"

Usage

You can get a Slack::SlashCommand from an HTTP::Request or its body:

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:

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