Skip to content

Instantly share code, notes, and snippets.

@achavez
Created March 25, 2014 17:59
Show Gist options
  • 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
});
@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