Hello World in Slack
Public
18 Jul 18:58

See the link for setup instructions. Then in ruby:

conn = Faraday.new(your_slack_webhook_url)
conn.post do |req|
  req.headers['Content-Type'] = 'application/json'
  req.body = { text: 'Hello World!' }.to_json
end
https://api.slack.com/tutorials/slack-apps-hello-world 
#untagged

Comments

Empty! You must sign in to add comments.