Hello everyone,
I'm new to fusionAuth and I've just implemented a standard login into my PHP app using username and password.
I receive a correct success response with a token on top, which I store in the user's session, but if I try to call the login api using the token instead of the password, as explained here, I get a 404 error response:
FusionAuth\ClientResponse Object
(
    [errorResponse] => 
    [exception] => 
    [method] => POST
    [request] => Array
        (
            [applicationId] => app_id
            [loginId] => username
            [password] => very_long_access_token
            [ipAddress] => 93.147.229.20
        )
    [successResponse] => 
    [status] => 404
)
Any idea on a possible cause for this error?
Thank you!