Skip to content

Instantly share code, notes, and snippets.

@arn-ob
Created January 16, 2019 18:39
Show Gist options
  • Select an option

  • Save arn-ob/60b0926cf1ac21af5cd2521457e90fb7 to your computer and use it in GitHub Desktop.

Select an option

Save arn-ob/60b0926cf1ac21af5cd2521457e90fb7 to your computer and use it in GitHub Desktop.
<?php
$token = '';
if(isset($_REQUEST['hub_challenge'])){
$challenge = $_REQUEST['hub_challenge'];
$token = $_REQUEST['hub_verify_token'];
}
if($token === "ar"){
echo $challenge;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment