FusionAuth
    • Home
    • Categories
    • Recent
    • Popular
    • Pricing
    • Contact us
    • Docs
    • Login
    1. Home
    2. Categories
    3. Q&A
    Log in to post
    Load new posts
    • Recently Replied
    • Recently Created
    • Most Posts
    • Most Votes
    • Most Views
    • F

      Unsolved tokeninfo 400 response during Complete the Google Login

      • • fela
      7
      1
      Votes
      7
      Posts
      1.8k
      Views

      M

      BTW I have successfully implemented Facebook social login using Complete Facebook Login api which is actually the same endpoint/api as of Complete google login but with a different identity provider value. It's quite a weird behavior that that api is working with facebook but not with google. 😞

      Could you guys please take a look over it? Or I am missing something in case of google login if it needs some configuration.

    • J

      Unsolved How we can check If refresh token is expired?

      • • jinalptl1993
      1
      1
      Votes
      1
      Posts
      1.1k
      Views

      No one has replied

    • H

      Unsolved pre-populate email in hosted signup form

      • • hamza
      1
      0
      Votes
      1
      Posts
      342
      Views

      No one has replied

    • S

      Unsolved Where can I find the linkedin access token?

      • • sh
      4
      0
      Votes
      4
      Posts
      339
      Views

      danD

      The doc should be updated now, @sh

      Sorry about that!

    • M

      Unsolved This topic is deleted!

      • • mo
      1
      0
      Votes
      1
      Posts
      24
      Views

      No one has replied

    • F

      Solved Express-React Example App on vServer

      • • fritzgaertner
      2
      0
      Votes
      2
      Posts
      350
      Views

      F

      Fixed the problem on my own, for everyone running into this problem too. Check your redirect uri in config.js and your fusionauth dashboard.

      In my case I got redirected to:

      http://login.ruffyg.de/oauth-callback?...........

      but of course it has to redirect to my express server which is on port 9000 so:

      http://login.ruffyg.de:9000/oauth-callback?...........

    • S

      Unsolved Error in logs on hosted fusionauth

      postgresql error • • shanon
      4
      0
      Votes
      4
      Posts
      2.9k
      Views

      S

      @dan Sorry I didn't get a notification that you'd replied, so my apologies that I didn't see that sooner. I'll try moving to the latest version to see if that helps before reporting back.

    • F

      Unsolved This topic is deleted!

      • • fritzgaertner
      1
      0
      Votes
      1
      Posts
      4
      Views

      No one has replied

    • S

      Unsolved TrustTokenRequired on change-password when MFA not enabled

      • • stephen.saucier 0
      2
      0
      Votes
      2
      Posts
      336
      Views

      S

      When I changed the user's password manually in FA (change on next login was still enabled), it then allowed the password to be changed properly via the API without any Trust Token.

    • A

      Unsolved Can anyone access "private key" present in JWT signature when token is signed using RSA?

      • • agbichpuriya
      2
      0
      Votes
      2
      Posts
      531
      Views

      danD

      @agbichpuriya

      The private RSA key should not be present in your JWT. The public key should not be present either, but a kid should be present in the header identifying the public/private keypair that was used to sign the JWT.

      Please share a sample JWT with this issue.

    • S

      Unsolved Support one-tap login with Google

      • • sswami
      2
      0
      Votes
      2
      Posts
      931
      Views

      danD

      @sswami Thanks!

      Please file a feature request here: https://github.com/fusionauth/fusionauth-issues/issues outlining your use case. We love community feature requests and weigh community support (in terms of upvotes) when considering future work.

      Here's our general roadmap guidance: https://fusionauth.io/docs/v1/tech/core-concepts/roadmap

    • O

      Unsolved OAuth Failing to Log In

      • • owen.melbourne
      2
      0
      Votes
      2
      Posts
      320
      Views

      danD

      @owen-melbourne If you are using FusionAuth Cloud and see this, please open a support ticket.

    • J

      Unsolved How to Implement Sign Up with Google using the typescript client library in a React Application

      • • johnanisere
      2
      0
      Votes
      2
      Posts
      1.3k
      Views

      danD

      @johnanisere

      I'm not quite sure what you are asking for. Are you using FusionAuth hosted login pages? If so, the 'sign in/sign up with google' button should be present for any FusionAuth application you've configured it for.

      If you are not, you are responsible for starting off the sign in/sign up process on your own and then calling the 'complete login' API as documented here: https://fusionauth.io/docs/v1/tech/apis/identity-providers/google#complete-the-google-login

      Which approach are you taking?

    • Q

      Unsolved Issue validating JWT with .Net 5

      • • quent
      3
      0
      Votes
      3
      Posts
      679
      Views

      Q

      @dan yes seems it is still not working ... Thank you

    • danD

      Unsolved Can we deploy Kubernetes clusters for a customer if they are on our cloud?

      kubernetes cloud • • dan
      2
      0
      Votes
      2
      Posts
      3.7k
      Views

      danD

      No. Our cloud is a fully managed system, so you shouldn't care about the underlying technology.

      It isn't built with Kubernetes so when we launch a deployment in it, it's constructed using a different approach.

      If you want to run FusionAuth with kubernetes, that is supported, but you must self-host. More details here: https://fusionauth.io/docs/v1/tech/installation-guide/kubernetes/

    • P

      Unsolved How should I be using the kickstart.success webhook?

      kickstart webhook startup ci cd docker-compose • • Pyroseza
      2
      0
      Votes
      2
      Posts
      2.2k
      Views

      danD

      @pyroseza

      So it sounds like you're trying to figure out a way to know when FusionAuth has completed startup.

      The webhook is one way to do that. As you said, you can set up a kickstart event webhook within a kickstart file.

      Another way is to poll for a known value, such as a non-default tenant that you know your setup has added. That may be a simpler solution for you.

      Either way, you'll have to write some code to kick off the testing once you receive a signal that FusionAuth is ready.

      I personally would have preferred if there was an API endpoint I could query is to whether or not the kickstart has completed successfully, but instead we were given a webhook and I'm not quite sure how I should be using it.

      You'll need to write a webhook receiver that will kick off your tests (or whatever the next step of your testing setup is). I'm not quite sure how do that in one github action, but it should be pretty easy to split up a github action into two actions, a setup one (where you set everything up, including FusionAuth) and a test action (which you kick off in response to the FusionAuth webhook firing).

      I think you'd want the workflow_call event: https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#workflow_call

    • A

      Unsolved "Invalid Authorization Code" while implementing the Authorization Code Flow with Proof Key for Code Exchange (PKCE)

      oauth pkce authorization • • apeksha.barhanpur
      3
      0
      Votes
      3
      Posts
      2.8k
      Views

      A

      @dan

      I actually got the issue resolved, I had the PKCE configured as "Not Required". After I changed that to "Required" the flow worked as expected.

      Thanks.

    • G

      Unsolved Java verification code for HS256 signed id token

      • • gokul.mahajan20
      2
      0
      Votes
      2
      Posts
      1.2k
      Views

      danD

      @gokul-mahajan20 I think you can find examples here: https://github.com/FusionAuth/fusionauth-jwt/#sign-and-encode-a-jwt-using-hmac

    • L

      Unsolved add to default group from registration

      • • lambert.torres
      2
      0
      Votes
      2
      Posts
      559
      Views

      danD

      @lambert-torres I'd recommend using a webhook, probably this one: https://fusionauth.io/docs/v1/tech/events-webhooks/events/user-registration-create-complete and then in the webhook receiver, calling the API to add them to a group.

      There is no built in support for this functionality.

    • F

      Unsolved Expired vs Locked - Concept

      • • flaviofdiez
      2
      0
      Votes
      2
      Posts
      365
      Views

      danD

      @flaviofdiez

      Thanks for sharing your thoughts.

      If you want to mark a user inactive, you can do a soft delete on that user: https://fusionauth.io/docs/v1/tech/apis/users#delete-a-user

      Then you can re-activate them: https://fusionauth.io/docs/v1/tech/apis/users#reactivate-a-user

      I'm not sure what you mean by expired? That seems like a construct you are creating yourself?

      If you want to apply a time based attribute to a user, you could use user actions: https://fusionauth.io/docs/v1/tech/apis/actioning-users which let you apply an action to a user, which can be for a limited period of time or forever (until you remove it). There's some support in the admin UI for applying user actions.

      HTH.