2017 © Pedro Peláez
 

library jwt-token

woisk php jwt token auth

image

woisk/jwt-token

woisk php jwt token auth

  • Wednesday, July 11, 2018
  • by woisk
  • Repository
  • 1 Watchers
  • 0 Stars
  • 10 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 6 Versions
  • 0 % Grown

The README.md

composer require woisk/jwt-token

Example

 "http://example.org",
    "aud" => "http://example.com",
    "iat" => 1356999524,
    "nbf" => 1357000000
);

/**
 * IMPORTANT:
 * You must specify supported algorithms for your application. See
 * https://tools.ietf.org/html/draft-ietf-jose-json-web-algorithms-40
 * for a list of spec-compliant algorithms.
 */
$jwt = JWT::encode($token, $key);
$decoded = JWT::decode($jwt, $key, array('HS256'));

print_r($decoded);

/*
 NOTE: This will now be an object instead of an associative array. To get
 an associative array, you will need to cast it as such:
*/

$decoded_array = (array) $decoded;

/**
 * You can add a leeway to account for when there is a clock skew times between
 * the signing and verifying servers. It is recommended that this leeway should
 * not be bigger than a few minutes.
 *
 * Source: http://self-issued.info/docs/draft-ietf-oauth-json-web-token.html#nbfDef
 */
JWT::$leeway = 60; // $leeway in seconds
$decoded = JWT::decode($jwt, $key, array('HS256'));

?>

Example with RS256 (openssl)

 "example.org",
    "aud" => "example.com",
    "iat" => 1356999524,
    "nbf" => 1357000000
);

$jwt = JWT::encode($token, $privateKey, 'RS256');
echo "Encode:\n" . print_r($jwt, true) . "\n";

$decoded = JWT::decode($jwt, $publicKey, array('RS256'));

/*
 NOTE: This will now be an object instead of an associative array. To get
 an associative array, you will need to cast it as such:
*/

$decoded_array = (array) $decoded;
echo "Decode:\n" . print_r($decoded_array, true) . "\n";
?>

The Versions

11/07 2018

1.0.4

1.0.4.0 https://github.com/woisk/jwt-token

woisk php jwt token auth

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

by Maple Grove

07/07 2018

dev-master

9999999-dev https://github.com/woisk/jwt-token

woisk php jwt token auth

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

by Maple Grove

07/07 2018

1.0.3

1.0.3.0 https://github.com/woisk/jwt-token

woisk php jwt token auth

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

by Maple Grove

07/07 2018

1.0.2

1.0.2.0 https://github.com/woisk/jwt-token

woisk php jwt token auth

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

by Maple Grove

07/07 2018

1.0.0

1.0.0.0 https://github.com/woisk/jwt-token

woisk php jwt token auth

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

by Maple Grove

07/07 2018

1.0.1

1.0.1.0 https://github.com/woisk/jwt-token

woisk php jwt token auth

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

by Maple Grove