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

      Logout from one application does not logout user from another

      • • yb98
      2
      0
      Votes
      2
      Posts
      2.4k
      Views

      danD

      Your application needs to kill/destroy its session in the Logout URL route.

      For example, see the "Logout page route" here: https://fusionauth.io/docs/v1/tech/guides/single-sign-on/

      Do your applications do that?

    • O

      No suitable driver found for jdbc:mysql://localhost:3306/login?...

      • • office
      11
      0
      Votes
      11
      Posts
      7.7k
      Views

      M

      The reason you got this error is because you forgot to register your java mysql jdbc driver with the application.

      Should be like this:

      Class.forName("com.mysql.jdbc.Driver");

      This forces the driver to register itself, so that Java knows how to handle those database connection strings.

      You'll have to read the manual on your specific mysql jdbc driver to find the exact string to place inside the the Class.forName("...") parameter.

    • A

      Adding support for 3rd party clients authentication

      • • ashok
      2
      0
      Votes
      2
      Posts
      1.7k
      Views

      joshuaJ

      @ashok

      I think that your initial assessments are correct. You should be able to create an application, and that would generate a unique client secret.

      The API below would be where I would start.
      https://fusionauth.io/docs/v1/tech/apis/applications/#create-an-application

      If you have a few more questions related to the specific technical challenges you see from this approach, we could consider them here as well 🙂

      Thanks,
      Josh

    • N

      Support for alternative search engines

      • • naughtly.keller
      2
      0
      Votes
      2
      Posts
      1.3k
      Views

      joshuaJ

      @naughtly-keller,

      I don't disagree that there is a layer of complexity that can come with elastic depending on your configuration. If you would like, you could log a feature request to have the search libraries that you mentioned reviewed for inclusion into future iterations of FusionAuth. I took a look and they seemed very interesting; I appreciate you mentioning it.

      In the meantime, if you haven't yet, you can check out the container repo and its search section. There are some pre-configured search settings to be found there.
      https://github.com/FusionAuth/fusionauth-containers/tree/master/kubernetes/services.

      We also have a helm repo that has been very active.
      https://github.com/FusionAuth/charts

      Also, I assume you are running a container orchestration service like K8's but if you are using just docker, then you can run this command and have elastic up and running within a single docker container (related link)

      curl -o docker-compose.yml https://raw.githubusercontent.com/FusionAuth/fusionauth-containers/master/docker/fusionauth/docker-compose.yml && curl -o .env https://raw.githubusercontent.com/FusionAuth/fusionauth-containers/master/docker/fusionauth/.env && docker-compose up

      Finally, you can check out the installation guides for additional assistance and context.

      https://fusionauth.io/docs/v1/tech/installation-guide/cluster/ https://fusionauth.io/docs/v1/tech/installation-guide/fusionauth-search/ https://fusionauth.io/docs/v1/tech/installation-guide/docker/ https://fusionauth.io/docs/v1/tech/installation-guide/server-layout/

      ES does give you the benefits of powerful queries that can be run from right within FusionAuth Admin UI or via the API. I have seen firsthand how this can really help you as your Monthly Active Users projects upwards and you have more data to sort and consume.

      I hope this helps!

      Thanks,
      Josh

    • H

      Unsolved Anyone has written a FusionAuth password Encryptor plugin for Wordpress?

      • • hppyrbit
      2
      0
      Votes
      2
      Posts
      1.9k
      Views

      robotdanR

      A better question may be how are the passwords currently hashed in WordPress?

      Once you know that you'll know if one of the off the shelf options will work, or if a custom plugin will need to be written.

      https://github.com/FusionAuth/fusionauth-example-password-encryptor

    • B

      Deserializing webhook events in java

      webhook event • • brian_ls
      4
      0
      Votes
      4
      Posts
      3.7k
      Views

      joshuaJ

      @brian_ls

      Thanks for the contribution! I am sure that it will be useful to others along the way!

      Thanks,
      Josh

    • Y

      Terminate idle sessions based on Role

      • • yb98
      2
      0
      Votes
      2
      Posts
      1.4k
      Views

      joshuaJ

      Hi @yb98 -

      I don't believe that this is currently possible within the Admin UI (but I will update this post if I discover otherwise). You could submit a feature request outlining your use case.

      It may be possible to hook something up via the API and lots of custom code (but even then, I am not sure how this would work). You may find some insight here.

      Please note, you can set these duration settings on both the tenant and the application level (example below).

      roles-app-orginal.png

      Thanks,
      Josh

    • M

      Diference between Login and register Identity provider Google

      • • maximiliano.riffo
      2
      0
      Votes
      2
      Posts
      493
      Views

      joshuaJ

      @maximiliano-riffo,

      Based on the documentation, it does seem that a differentiation can be drawn out, but manually only (see bold below).

      Complete the google login API - Doc

      (https://fusionauth.io/docs/v1/tech/apis/identity-providers/google/#complete-the-google-login )

      The user does not need to exist yet in FusionAuth to utilize this API. The token returned from Google will be used to retrieve the user’s email address, if that user does not yet exist in FusionAuth the user will be created. If create registration has been enabled for this identity provider and the user does not yet have a registration for this application, a registration will be automatically created for the user. The user will be assigned any default roles configured for the application. If create registration has not been enabled, a registration will not be created if one does not yet exist. This last scenario is useful if you wish to manually provision users and then subsequently allow them to login with Google.

      So it would seem, without testing this myself, if you disabled create self service registration in your application, and got the 202 code, that might be your cue to hit a registration endpoint to register that user?

      registrations.png

      Another option may be to enlist the help of a webhook and/or event to watch the registrations and take action based on that.

      https://fusionauth.io/docs/v1/tech/events-webhooks/

      Let me know if I am understanding correctly or if there is any other clarifying information.

      Thanks!
      Josh

    • C

      This topic is deleted!

      • • curlscurves22
      1
      0
      Votes
      1
      Posts
      3
      Views

      No one has replied

    • C

      This topic is deleted!

      • • curlscurves22
      1
      0
      Votes
      1
      Posts
      2
      Views

      No one has replied

    • B

      This topic is deleted!

      • • brillmindz35
      1
      0
      Votes
      1
      Posts
      2
      Views

      No one has replied

    • N

      This topic is deleted!

      • • nirafinance43
      1
      0
      Votes
      1
      Posts
      2
      Views

      No one has replied

    • E

      This topic is deleted!

      • • essaeweigh
      1
      0
      Votes
      1
      Posts
      6
      Views

      No one has replied

    • R

      This topic is deleted!

      • • richb201
      1
      0
      Votes
      1
      Posts
      2
      Views

      No one has replied

    • D

      This topic is deleted!

      • • drencase.097094
      1
      0
      Votes
      1
      Posts
      2
      Views

      No one has replied

    • W

      This topic is deleted!

      • • wfuuopy
      1
      0
      Votes
      1
      Posts
      2
      Views

      No one has replied

    • R

      where is the application oauth tab?

      • • richb201
      5
      0
      Votes
      5
      Posts
      2.3k
      Views

      robotdanR

      @richb201 said in where is the application oauth tab?:

      redirect_uri=35.153.28.16

      The redirect needs to match your configured list in FusionAuth. redirect_uri=http://35.153.28.16...

      If you are using the FusionAuth email template, you will want to verify the link is getting built correctly in the template.

    • M

      Cannot upgrade database from 1.7.2 to 1.8.0-RC.1

      • • melichpelegri
      2
      0
      Votes
      2
      Posts
      441
      Views

      danD

      hiya @melichpelegri ,

      I'm not sure what to suggest. This is a pretty old version.

      From reading the release notes, I might try going to 1.8.1-RC

      https://fusionauth.io/docs/v1/tech/archive/release-notes/#version-1-8-1-rc1

      "Performing a clean install of 1.8.0-RC.1 may fail in some cases"

    • S

      This topic is deleted!

      • • SylviaBayer
      1
      0
      Votes
      1
      Posts
      4
      Views

      No one has replied

    • A

      Difference between API and using a client library

      • • arunkumar413
      5
      0
      Votes
      5
      Posts
      1.8k
      Views

      D

      @arunkumar413 The client API libraries provide are just thin wrappers around the web API calls. They support mostly the same functionality but are just more convenient (rather than having to explicitly access a web endpoint from your code)