Coder Social home page Coder Social logo

Comments (3)

RobDWaller avatar RobDWaller commented on August 20, 2024

Is it possible for you to share a snippet of the code you are using for me to test this.

Also what version are you using?

from reallysimplejwt.

andrewhollowaybreward avatar andrewhollowaybreward commented on August 20, 2024

Hi Rob,

Sorry for the delay!

The entry in my composer.json file is: -

"rbdwllr/reallysimplejwt": "^3.1",

Here is my JwtTokenService which handles the creation and validation, I simply call create and then use the validate method to check the tokens validity.

<?php

namespace App\Domain;

use ReallySimpleJWT\Token;

final class JwtTokenService
{
    private $secret;
    private $issuer;
    private $expiration;

    public function __construct(string $secret, string $issuer, int $expiration)
    {
        $this->secret = $secret;
        $this->issuer = $issuer;
        $this->expiration = $expiration;
    }

    public function create(int $userId): string
    {
        $expires = time() + $this->expiration;
        $token = Token::create($userId, $this->secret, $expires, $this->issuer);
        return $token;
    }

    public function validate(string $token): bool
    {
        if (empty($token)) {
            return false;
        }

        return Token::validate($token, $this->secret);
    }

    public function getHeader(string $token): array
    {
        return Token::getHeader($token, $this->secret);
    }
}

I only get the error when running in debug mode, I am using Visual Studio Code as an IDE using XDebug and the Felix Becker PHP Debug extension.

I get the following error message in parse.php on line 259: -

Exception has occurred.
ReallySimpleJWT\Exception\ValidateException: Not Before claim is not set.

from reallysimplejwt.

RobDWaller avatar RobDWaller commented on August 20, 2024

Apologies for the slow response. So I've had a look into this and it is correct that this exception should be thrown in this scenario. However this is an internal exception that is caught within the Token class. I'd guess that the issue here is to do with running this code in debug mode at which point I assume any exception will cause a run time failure.

So there are a couple of solutions to this problem.

  1. Use the Token::customPayload() method and set an nbf claim to time() - 20 or something similar.
  2. Interact with the underlying Build and Parse classes directly.

This issue should be resolved though within version 4.0.0 as validation will be handled slightly differently.

from reallysimplejwt.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.