Skip to content

Instantly share code, notes, and snippets.

View deepfry's full-sized avatar
💀
on that grind

JJ Fry deepfry

💀
on that grind
View GitHub Profile
@deepfry
deepfry / Slack-Ajax.js
Last active April 12, 2018 17:40
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)