Skip to content

Instantly share code, notes, and snippets.

@achavez
Created March 25, 2014 17:59
Show Gist options
  • Star 24 You must be signed in to star a gist
  • Fork 5 You must be signed in to fork a gist
  • Save achavez/9767499 to your computer and use it in GitHub Desktop.
Save achavez/9767499 to your computer and use it in GitHub Desktop.
Post to Slack using javascript
var url = // Webhook URL
var text = // Text to post
$.ajax({
data: 'payload=' + JSON.stringify({
"text": text
}),
dataType: 'json',
processData: false,
type: 'POST',
url: url
});
@mediamaker
Copy link

Thanks for this, really helped me out today!

@harnerdesigns
Copy link

Simple. Elegant. Does what it's supposed to do. Thanks!

@arda-directiq
Copy link

Thanks for sharing this.

Copy link

ghost commented Sep 12, 2017

Thank you very useful!

@shabudeenux
Copy link

Thank you Andrew

@deepfry
Copy link

deepfry commented Apr 12, 2018

thanks for this!!

@samuelj123
Copy link

Thanks so much! Really helped :)

@tunisiano187
Copy link

Did you have a solution to create a script without showing the webhook link? your script halped me but i can't share it with the whole world
Thank you for your share.

@nwaughachukwuma
Copy link

Hi @achavez can this be optimized to post to specific Slack channels?

@diegotorrent
Copy link

Your incoming webhook must be setted to do this task...

Hi @achavez can this be optimized to post to specific Slack channels?

@xerosanyam
Copy link

Hi guys, built something that might be useful to you
https://github.com/xerosanyam/amazing-toolkit
for future readers, you can use SlackService to post to a webhook.

@khavari
Copy link

khavari commented Jul 7, 2020

Thanks so much!

@Wayeet
Copy link

Wayeet commented Mar 31, 2021

Thanks a lot <3

@DylanDelobel
Copy link

Thx !

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment