Skip to content

Instantly share code, notes, and snippets.

@deepfry
Last active April 12, 2018 17:40
Show Gist options
  • Save deepfry/231fa3b452592e140acfd77db743d9b9 to your computer and use it in GitHub Desktop.
Save deepfry/231fa3b452592e140acfd77db743d9b9 to your computer and use it in GitHub Desktop.
Post to slack using Javscript
$.ajax({
data:'payload='+ JSON.stringify({
"text":"testing"
}),
dataType:"json",
processData:"false",
type:'POST',
url:URL,
success:function(res){
console.log(res)
}
}).fail(function(res){
console.log(res)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment