Skip to content

Instantly share code, notes, and snippets.

@achavez
Created March 25, 2014 17:59
Show Gist options
  • Select an option

  • Save achavez/9767499 to your computer and use it in GitHub Desktop.

Select an option

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
Copy Markdown

Thanks for this, really helped me out today!

@harnerdesigns

Copy link
Copy Markdown

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

@arda-directiq

Copy link
Copy Markdown

Thanks for sharing this.

ghost commented Sep 12, 2017

Copy link
Copy Markdown

Thank you very useful!

@shabudeenux

Copy link
Copy Markdown

Thank you Andrew

@deepfry

deepfry commented Apr 12, 2018

Copy link
Copy Markdown

thanks for this!!

@samuelj123

Copy link
Copy Markdown

Thanks so much! Really helped :)

@tunisiano187

Copy link
Copy Markdown

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
Copy Markdown

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

@diegotorrent

Copy link
Copy Markdown

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
Copy Markdown

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

khavari commented Jul 7, 2020

Copy link
Copy Markdown

Thanks so much!

@Wayeet

Wayeet commented Mar 31, 2021

Copy link
Copy Markdown

Thanks a lot <3

@DylanDelobel

Copy link
Copy Markdown

Thx !

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