This commit is contained in:
ubergeek 2019-03-21 14:21:01 -04:00
parent 53af670a4d
commit bb10added4
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ $json = file_get_contents('php://input');
$data = json_decode($json, true); $data = json_decode($json, true);
$client_token = $data["secret"]; $client_token = $data["secret"];
if ($client_token !== $access_token) if ($client_token != $access_token)
{ {
http_response_code(403); http_response_code(403);
echo "HTTP 403 - Forbidden, P1."; echo "HTTP 403 - Forbidden, P1.";