Last active
December 9, 2019 12:31
-
-
Save cissav/ae9f97b4bf3a710d4b7ea5c7da3673c7 to your computer and use it in GitHub Desktop.
jwt_example.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
JWT можно скачать по адресу https://github.com/firebase/php-jwt | |
Также можно использовать JWT PEAR package http://pear.php.net/pepr/pepr-proposal-show.php?id=688 | |
*/ | |
include "Authentication/JWT.php"; | |
define('CURRENT_TIME', strtotime(gmdate("M d Y H:i:s").'+0000')); | |
$payload = array( | |
"iat" => CURRENT_TIME, | |
"exp" => CURRENT_TIME+86400, | |
"email" => 'testuser@gmail.com', | |
"name" => 'Василий Пупкин', | |
"company_name" => 'Мосгорстрой', | |
"company_position" => 'PHP Programmer', | |
"remote_photo_url" => 'http://mydomain.com/myimage.jpg', | |
); | |
$marker='uMxNpq7WSsUI6KSHPBv1eTLf4X6txCwj'; | |
$subdomain = 'yourcompany'; | |
$encoded = JWT::encode($payload, $marker); | |
$url = 'http://'.$subdomain.'.omnidesk.ru/access/jwt?jwt='.$encoded; | |
if(isset($_GET["return_to"])) { | |
$url .= "&return_to=" . urlencode($_GET["return_to"]); | |
} | |
$ch = curl_init( $url ); | |
curl_setopt( $ch, CURLOPT_URL, $url ); | |
curl_setopt( $ch, CURLOPT_RETURNTRANSFER, true ); | |
curl_setopt( $ch, CURLOPT_SSL_VERIFYHOST, 0 ); | |
curl_setopt( $ch, CURLOPT_SSL_VERIFYPEER, false ); | |
curl_setopt( $ch, CURLOPT_FOLLOWLOCATION, true ); | |
curl_setopt( $ch, CURLOPT_TIMEOUT, 60 ); | |
$result = curl_exec( $ch ); | |
$headers = curl_getinfo($ch); | |
if($headers['http_code']==200) { | |
header("Location: ".$result); | |
} else { | |
echo "Error: ".$result; | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment