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
    • M

      How can I enable social logins from tenant or application API

      • • mak
      2
      0
      Votes
      2
      Posts
      444
      Views

      danD

      Sure, you want to use the patch identity provider method: https://github.com/FusionAuth/fusionauth-java-client/blob/master/src/main/java/io/fusionauth/client/FusionAuthClient.java#L1575

      You'll want to update the application configuration section: https://fusionauth.io/docs/v1/tech/apis/identity-providers/

      Be aware that there is an open issue regarding this: https://github.com/FusionAuth/fusionauth-issues/issues/767 If this affects you, please upvote it so that it moves up in our priority list.

      This also may be worth reading: https://fusionauth.io/community/forum/topic/510/update-identity-provider

    • M

      Authorization lambda?

      • • mgetka
      3
      0
      Votes
      3
      Posts
      3.6k
      Views

      M

      Ok, I've created a feature request.

    • R

      creating security based on passwordless login, not passwords

      • • richb201
      3
      0
      Votes
      3
      Posts
      372
      Views

      danD

      Hi @richb201 ,

      Are you asking what the security implications are for not using passwords at all?

      That's hard to give general guidance on, as that depends on how good users are at keeping their email accounts safe.

      In general it's going to be pretty good because people tend to care more about their email accounts and pay more attention to them than some random account they signed up for 6 months ago and haven't checked since.

      Also in favor of this is the fact that the passwordless codes are time limited (configurable in the tenant).

      But, as I'm sure you can understand, I can't do a thorough security analysis because I don't know the full details of your scenario.

    • C

      Use one application login to access another application

      • • chris.obdam
      4
      0
      Votes
      4
      Posts
      1.1k
      Views

      danD

      Nope, this is the recommended solution.

      If you think there's a valid use case for having this be supported natively (without the webhook), please file an issue with a feature request, including as many details as you can: https://github.com/fusionauth/fusionauth-issues/issues

    • R

      trouble sending the passwordless email

      • • richb201
      6
      0
      Votes
      6
      Posts
      3.0k
      Views

      danD

      Ah, I see how that could be confusing. Sorry about that. Glad you got it sorted out and it works!

    • L

      This topic is deleted!

      • • lucas
      1
      0
      Votes
      1
      Posts
      1
      Views

      No one has replied

    • T

      How can I add SessionIndex as part of the AuthenStatement provided? Is there a way to add this using a Lamba Function?

      • • tom.mauldin
      5
      0
      Votes
      5
      Posts
      1.2k
      Views

      T

      We just did some testing and it appears that JFrog Artifactory can now use FusionAuth as a SAML ID Provider.

      Thanks again for the quick work on this issue.

      Tom M

    • A

      Unable to send email via JavaMailCan't send command to SMTP host

      • • aaron.rasch
      6
      0
      Votes
      6
      Posts
      8.3k
      Views

      A

      'Tis I indeed! Continuing my signature moves of knowing juuuuuust enough to be dangerous to myself and others LOL. I'm checking the settings now, thanks to you and Dan for the support!

    • C

      Kafka integration

      • • cody.braddock
      4
      0
      Votes
      4
      Posts
      1.5k
      Views

      robotdanR

      @cody-braddock you'll also want to ensure this event is enabled for your Tenant. See Tenants > Edit > Webhooks in the FusionAuth UI.

    • R

      where to find the /api/status response?

      • • richb201
      17
      0
      Votes
      17
      Posts
      30.5k
      Views

      R

      solved. I needed to type DELETE.

    • R

      Login with Magic Link?

      • • richb201
      29
      0
      Votes
      29
      Posts
      131.0k
      Views

      danD

      But if I put these in the application, won't this be a security problem?

      If you put them in a javascript app, yes. But if they are in the php application only, then it'll be like a database password. Not really a security issue.

      You could also inject them as an environment variable or pull from a secrets manager; however you manage your database credentials, I'd suggest doing the same with the client id/secret.

    • T

      Is there a way to accept the open source version license agreement via Kickstart?

      • • tom.mauldin
      6
      0
      Votes
      6
      Posts
      3.6k
      Views

      danD

      Awesome, glad to hear it! Thanks for letting me know.

    • Q

      This topic is deleted!

      • • qbanole03
      1
      0
      Votes
      1
      Posts
      2
      Views

      No one has replied

    • R

      multiple passwordless logins

      • • richb201
      4
      0
      Votes
      4
      Posts
      710
      Views

      danD

      Users are shared across tenants, so if you have one person logged in and they visit a different Fusionauth application url, they'll be automatically logged in again (without the need to auth again). I'm not sure that's what you want.

      If you register a user to app A and then to app B, they'll be registered in both apps.

      If you register a user to app A and then to app A again, I think you'd get an error message, but would have to try that out to be sure.

      If you want to try this yourself, you could try richb201+1@gmail and richb201+2@gmail (anything after the + is treated as the same email address by gmail, but different email addresses by fusionauth).

    • C

      Search Limitations and Bypassing them.

      • • chakshu
      3
      0
      Votes
      3
      Posts
      4.9k
      Views

      danD

      Is FA the best place to have such time of queries or should I create a pipeline and publish updates elsewhere?

      I think you have a couple of choices:

      build a pipeline based on webhooks, possibly publishing each user to s3 or another datastore querying elasticsearch directly querying fusionauth changing to the database engine

      Given your other requirements (the ability to pick off just the phone number and name), I'd test out querying elasticsearch directly, or, if your queries are all simple, switching to the database search engine.

      I'd pursue the pipeline approach only if the direct queries didn't perform well, because it's more moving pieces to break.

      Is there an API planned which can allow me to get users data with specific fields - name, phone number or just the data field?

      This is not currently planned, but feel free to open a feature request with more details. Feel free to reference this post and your previous github comment. I could see that being a useful API change, similar to how you can specify sort fields.

      Is it advisable to modify elastic search to index only certain properties and get results directly from there without fetching the database - Bypassing FA APIs? (I have updated the index.max_result_window to the number of results that I am expecting). Is there is way to make those queries through FA?

      We pretty much pass through the elasticsearch queries, letting ES do what it is good at. Modifying the elasticsearch index settings shouldn't cause any issues, but is not something we test.

      You'll also want to keep an eye on https://github.com/FusionAuth/fusionauth-issues/issues/494 which should make it possible to query directly from fusionauth.

      Also there is an issue of the query that FA uses to get the results from PSQL. So there is limit of ~32k even if elastic search is not the limiting factor. https://stackoverflow.com/questions/1009706/postgresql-max-number-of-parameters-in-in-clause.

      I don't believe that this limit applies. Have you seen this limit?

    • P

      SQL Server Support

      • • pwelter
      4
      0
      Votes
      4
      Posts
      2.9k
      Views

      robotdanR

      Another option is to use FusionAuth Cloud, then you do not need to be aware of the underlying data storage layer.

    • C

      how to set sso on multiple sites

      • • conwie2020
      2
      0
      Votes
      2
      Posts
      305
      Views

      danD

      Yes. It's on my list to write up some documentation, but until then, this github issue walks you through some supported scenarios (including some code suggestions):

      https://github.com/FusionAuth/fusionauth-issues/issues/171

    • P

      Login Linking, Adding an Identity Provider to existing user

      • • pwelter
      2
      1
      Votes
      2
      Posts
      711
      Views

      danD

      I think you are looking for this issue: https://github.com/FusionAuth/fusionauth-issues/issues/751

      This is open and therefore the functionality you are looking for isn't currently available.

      Please add your comment and/or your upvote to this issue. Here's our current roadmap guidance.

    • T

      adding google

      • • tconley
      2
      0
      Votes
      2
      Posts
      378
      Views

      danD

      I'm taking the first step in bringing a classic-ASP app into the 21st century, replacing the existing authentication with fusionauth.

      Welcome! 🙂

      Once I've added google as a social auth provider and a user attempts to login, the google authentication part happens (user is sent to google and logs in there), but then I'm just stuck on the screen below... never redirected to the redirect_uri or anything.

      Hmmm. That's curious. Is there any information about the error in the event log or log tabs (under system)?

      What version of FusionAuth are you running?

      Also, i noticed if user clicks on create an account it goes to the registration page, which doesn't have a register with google link, even though I've enabled that "create registration" flag in the google settings for my application.

      So if you enable "create registration" that means that a user can authenticate with google and then be automatically registered for the given FusionAuth application. This means they'll be authorized to access that application (and receive a 200 when authenticating against it).

      This doesn't mean that a user can sign up with google from your application. More details here: https://fusionauth.io/docs/v1/tech/identity-providers/

    • S

      This topic is deleted!

      • • shanon
      1
      0
      Votes
      1
      Posts
      2
      Views

      No one has replied