Skip to content

Instantly share code, notes, and snippets.

@ismaelc
Created April 27, 2020 00:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ismaelc/512523d61bc5209c6bc08852e813afc7 to your computer and use it in GitHub Desktop.
Save ismaelc/512523d61bc5209c6bc08852e813afc7 to your computer and use it in GitHub Desktop.
var postMessage = async function(params) {
var response = await fetch('https://slack.com/api/chat.postMessage', {
method: 'POST',
body: params
})
var data = await response.json()
return data
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment