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

      Zero byte single-logout file downloaded every time I logout in Safari and Chrome (Mac + iPhone)

      General Discussion
      • error fusionauth • • skorupa.pawel
      2
      0
      Votes
      2
      Posts
      1.8k
      Views

      danD

      @skorupa-pawel I saw this on Firefox in the past but never on Safari.

      Does this apply to all applications?

      Do you have a logout url configured in the OAuth tab? Does that URL exist?

    • S

      How to generate and authorized java spring controller using JWT

      General Discussion
      • fusionauth jwt java client creds • • shyamsundar.k
      5
      1
      Votes
      5
      Posts
      2.4k
      Views

      danD

      @shyamsundar-k said in How to generate and authorized java spring controller using JWT:

      We need to pass the token in the API header as Authorization: Bearer<token> But what is the process so that I can validate the endpoint with the valid token if the token is invalid or does not have the required roles or scope then I should get 401 else I should be able to access the API successfully.

      Once you have a token in your API, you can validate it in two different ways. But it's worth noting that to validate the token, you must validate the signature and then the claims.

      First option: use a library to validate the signature. Most languages have options. For java, you can use fusionauth-jwt, the readme has sample code.

      Second option: use the validate API. You could use the FusionAuth client library to make this call if you'd like.

      The first means you have to pick a library. The second means you have to make a network call.

      Either way, after you validate the signature, you need to check the claims (issuer, audience, expiration, custom claims) to make sure they are what you expect.

      Here's more about how to consume a JWT.

    • B

      Insufficient memory error while running Fusion auth using docker compose

      General Discussion
      • fusionauth docker-compose • • bhardwajmunish88
      4
      1
      Votes
      4
      Posts
      1.7k
      Views

      danD

      @bhardwajmunish88 From the stackoverflow link:

      According to this github issue this is corrected by using docker 20.10.5.

      Can you try with a later version of Docker? I think this is due to the Java Docker image, and isn't an issue with FusionAuth.

    • G

      After system reindex patching a user still returns SearchEngineRequestFailedException

      General Discussion
      • elasticsearch fusionauth error • • grisha
      3
      1
      Votes
      3
      Posts
      3.0k
      Views

      C

      If a user is still receiving a SearchEngineRequestFailedException after a system reindex and patching, there could be several reasons for this.

      Firstly, the issue may not have been related to the index or patching, but rather a problem with the user's search query or the way they are interacting with the system.

      Alternatively, it could be that the reindex and patching process did not fully resolve the underlying issue, and further investigation or troubleshooting is necessary.

      It's also possible that there are other technical or environmental factors at play that are causing the exception to continue occurring. In any case, it may be necessary to consult with technical support or seek out additional resources to diagnose and resolve the issue.

    • B

      fusion auth versus jose4j library for jwt using secp256k

      General Discussion
      • jwt verification fusionauth header • • benjamineroommen
      3
      0
      Votes
      3
      Posts
      3.2k
      Views

      B

      ok main thing is, is it ok to use header ES256 for jwt created using secp256k1 keys?

      https://datatracker.ietf.org/doc/html/rfc8812 says, secp256k1 curve should only be used with ES256k header, but in authfusion even if we give k1 pair keys and then use sign and encode a JWT using EC, it will come as ES256 only, is that okay?

      Another doubt is, those jwt (k1 curve keys + ES256) created in authfusion is only able to verify in jose4j with .setRelaxVerificationKeyValidation() //needed if the key is smaller than 256 bits.

      Without it we get the error:

      JWT processing failed. Additional details: [[17] Unable to process JOSE object (cause: org.jose4j.lang.InvalidKeyException: ES256/SHA256withECDSA expects a key using P-256 but was null):

      Description inside setRelaxVerificationKeyValidation :

      Bypass the strict checks on the verification key. This might be needed, for example, if the JWT issuer is using 1024-bit RSA keys or HMAC secrets that are too small (smaller than the size of the hash output)

      Is it the correct way to validate jwt created using ec in authfusion?

    • A

      FusionAuth not registering user in multiple Applications (GO-Client)

      General Discussion
      • golang fusionauth registrations application • • arihantverma52
      2
      0
      Votes
      2
      Posts
      2.2k
      Views

      A

      Solution:

      https://github.com/FusionAuth/go-client/issues/48

    • D

      Unsolved Fusionauth integrattion with kubeoidc proxy

      Q&A
      • kubernetes fusionauth oidc • • divneetsingh.m
      4
      0
      Votes
      4
      Posts
      1.6k
      Views

      A

      Proxy servers can store cached copies of sites. You will get the data from the proxy when you access a particular location.

    • danD

      Data loss and FusionAuth Cloud Basic plan

      Q&A
      • fusionauth cloud basic data loss • • dan
      4
      0
      Votes
      4
      Posts
      1.5k
      Views

      danD

      @garveymozga33 Thanks for your feedback. The basic cloud plan does not currently include backups and is not intended for production use.

    • danD

      How long does FusionAuth cloud provisioning take?

      Q&A
      • fusionauth cloud provisioning • • dan
      2
      0
      Votes
      2
      Posts
      1.4k
      Views

      danD

      Generally speaking, the provisioning depends greatly on the infrastructure being requested as well as the current demands placed on the underlying cloud infrastructure provider.

      For smaller deployments, you can expect a 5 to 10 minute timeline. For a setup more aligned with a high-volume system with large CPU and database capacities, you can expect a provisioning time of 20 to 45 minutes.

    • danD

      Can you connect FusionAuth instances?

      Q&A
      • federation fusionauth • • dan
      2
      0
      Votes
      2
      Posts
      1.4k
      Views

      danD

      Yes, you could connect one FusionAuth to another using an OpenID Connect Identity Provider or SAML v2.

    • A

      Token type?

      Q&A
      • jwt access tokens python fusionauth • • AliMirlou
      3
      0
      Votes
      3
      Posts
      6.6k
      Views

      A

      Seems like the library I used is opinionated. Thanks for the hints.

    • M

      Gatsby + Hasura + FusionAuth + KintoHub (My Dream Stack)

      Q&A
      • fusionauth gatsby gatsbyjs hasura kintohub • • mrstudyfirst
      8
      0
      Votes
      8
      Posts
      10.1k
      Views

      F

      yeah, pretty simple really, if you want to try it yourself before my tutorial is out, try using the hasura cloud + Auth0 tutorial on Hasura's site, and use the lessons from that to use it with fusionauth.