Navigation

    FusionAuth
    • Login
    • Search
    • Home
    • Categories
    • Recent
    • Popular
    • Pricing
    • Contact us
    • Docs
    1. Home
    2. Tags
    3. token
    Log in to post
    • All categories
    • S

      UNSOLVED Error 404 when trying to login using access token
      Q&A • token php login-api • • seednextsrl

      2
      0
      Votes
      2
      Posts
      45
      Views

      dan

      @seednextsrl you typically don't use the access token as a login password.

      The access token is what you present to other applications as proof that someone has logged in.

      There are a few FusionAuth APIs you can call and present the access token as a means of authentication. They are marked with a little blue person.

      Here's more about API authentication: https://fusionauth.io/docs/v1/tech/apis/authentication

      Here's an example of an API which uses a JWT to authenticate: https://fusionauth.io/docs/v1/tech/apis/users#retrieve-a-user (scroll to the "Retrieve a User using a JWT" section).

    • dan

      Does FusionAuth support paseto tokens?
      Q&A • paseto token • • dan

      4
      0
      Votes
      4
      Posts
      59
      Views

      dan

      Also, if you are interested in building a more secure JWT, this article may be of interest: https://fusionauth.io/learn/expert-advice/tokens/building-a-secure-jwt/

    • dan

      Revoking access tokens
      Q&A • jwt token revocation • • dan

      2
      0
      Votes
      2
      Posts
      150
      Views

      dan

      No, those tokens are completely de-coupled from FusionAuth (in a fundamental way, that is the point of those tokens).

      There are revocation strategies however, but they require some additional work.

      Here is one strategy we have documented: https://fusionauth.io/learn/expert-advice/tokens/revoking-jwts/