jwt icon indicating copy to clipboard operation
jwt copied to clipboard

Results 8 jwt issues
Sort by recently updated
recently updated
newest added

same as https://www.drupal.org/project/jwt/issues/2920054#comment-12666691

I would like to obtain a JWT for a current user via a module, that I am writing, so that an external program can be launched that will process data...

I would like to be able to write code like so: ``` $token = new JsonWebToken(); $encoded = (string) $token; ``` Thoughts @jonathangreen @bradjones1 ?

See https://www.drupal.org/project/jwt/issues/2990298 I'd like to suggest this PR be reset to a new 7.x-0.x branch in the main repo. I'm willing to be marked a maintainer / organizer for the...

Same as https://www.drupal.org/project/jwt/issues/2982301#comment-12666740

Hello Does this module support the use (validation, auth) of tokens that are generated by external, 3rd party auth providers? Thanks

Hi, thanks for the module! Is there a reason why you choose firebase library? on the jwt.io page [lcobucci](https://github.com/lcobucci/jwt) library supports more algorithms.

I would like to write code like so: ```php $payload = [ 'my' => 'custom claims', ]; $token = JsonWebToken::create($payload); ``` cc: @bradjones1 @jonathangreen