Skip to content

Instantly share code, notes, and snippets.

@markbiek
Created September 20, 2016 17:33
Show Gist options
  • Select an option

  • Save markbiek/c8fbf6ba0ccc184dbefb383a021c6ac7 to your computer and use it in GitHub Desktop.

Select an option

Save markbiek/c8fbf6ba0ccc184dbefb383a021c6ac7 to your computer and use it in GitHub Desktop.
<?php
//Check to make sure the token is valid
if (!isset($_POST['token']) || $_POST['token'] != SLACK_TOKEN) {
throw new Exception("Shenanigans!");
}
echo "Hello World!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment