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

      Unsolved Connector not persisting claim

      Q&A
      • connectors netcore lambda • • helzgate
      7
      0
      Votes
      7
      Posts
      1.2k
      Views

      H

      There is no way to get back information from FA when it calls your connector endpoint. What I ended up doing was creating separate applications for each portal in our app. WHen FA calls my connector, now I can look at the incoming applicationid and know which portal this user belongs too and that solved my issue.

    • F

      Unsolved Connector service docs say it needs only user.id, but fails it not given email too

      Q&A
      • connectors ritza • • fusionauth.qhj5e
      3
      0
      Votes
      3
      Posts
      2.2k
      Views

      F

      @dan Oh I see. The error in the response says:

      "because it was missing a unique id in the [user.id] or enough information to store in FusionAuth (i.e. an email or username)"

      In other words, "either Id or email" is missing from your request. Which makes boolean sense when thinking about it carefully.

      But when first reading it, I though it meant "you need either Id or email", which is very different. I supplied one of those. I though that was what the "or" meant.

      This error could be better as:

      "because it was missing a unique id in the [user.id] or enough information to store in FusionAuth (i.e. an email or username). Both are necessary"

    • J

      Facing duplicate key errors on high load

      Q&A
      • database connectors • • jm.oliver
      4
      0
      Votes
      4
      Posts
      2.2k
      Views

      joshuaJ

      Internal Note: tracking via https://github.com/FusionAuth/fusionauth-issues/issues/1231

    • danD

      Can we increase timeout of the login request?

      Q&A
      • timeout connectors generic login • • dan
      3
      0
      Votes
      3
      Posts
      1.3k
      Views

      danD

      You can increase the timeout of the login request to a connector. If you sign in to the admin UI and navigate to "Settings" and then "Connectors", you can modify either of these settings:

      "Connect timeout" "Read timeout"

      The default value for these is 2 seconds.

      There is more documentation on this topic here: https://fusionauth.io/docs/v1/tech/connectors/generic-connector/

      You can also change them via the API, if that's more in line with your current workflow. That's documented here: https://fusionauth.io/docs/v1/tech/apis/connectors/generic/#update-the-generic-connector

    • danD

      What can I use connectors for?

      Q&A
      • connectors • • dan
      5
      0
      Votes
      5
      Posts
      2.0k
      Views

      E

      @joshua That actually helps very much, thanks!