FusionAuth
    • Home
    • Categories
    • Recent
    • Popular
    • Pricing
    • Contact us
    • Docs
    • Login
    1. Home
    2. vinicius.campitelli
    3. Topics
    V
    • Profile
    • Following 0
    • Followers 0
    • Topics 4
    • Posts 14
    • Best 2
    • Controversial 0
    • Groups 0

    Topics created by vinicius.campitelli

    • V

      Unsolved In the Webhooks API, what are the "complete" events?

      Q&A
      • • • vinicius.campitelli
      2
      0
      Votes
      2
      Posts
      1.7k
      Views

      V

      Those events without the complete suffix are sent before we commit the database transaction and the ones with complete are sent after we commit the transaction.

      This means that the actual entities (user and user registration) don't actually exist when the first non-complete events are emitted.

      Take a look at our Calling FusionAuth APIs In Webhooks guide for more details.

    • V

      Solved What are the rollback options if I choose to upgrade my instance?

      Q&A
      • • • vinicius.campitelli
      2
      0
      Votes
      2
      Posts
      1.4k
      Views

      V

      The Rolling Back From a Problematic Upgrade guide will walk you through the necessary steps.

      We also recommend testing your upgrade in a non-production environment first and closely reviewing release notes to ensure you are aware of how the upgraded version of FusionAuth will interact with your integration.

    • V

      What happens if I update a user’s email address to an existing one?

      Q&A
      • • • vinicius.campitelli
      2
      0
      Votes
      2
      Posts
      2.4k
      Views

      V

      You'll receive an error in both scenarios.

      If you are using the web interface, you'll get a red message saying "Already exists".

      forum-edit-user-email.png

      And if you are trying to use the Update User API endpoint, you'll receive a HTTP 400 Bad Request error:

      forum-edit-user-email-api.png

    • V

      Do you have a sample integration for iOS and/or Android?

      Q&A
      • • • vinicius.campitelli
      2
      0
      Votes
      2
      Posts
      1.3k
      Views

      V

      Even though we don't have specific SDKs for mobile apps, we do have a Flutter quickstart which uses our Dart client library.

      If you want to develop natively, we recommend using AppAuth, which has iOS and Android SDKs and is maintained by the OpenId Foundation:

      https://github.com/openid/AppAuth-iOS https://github.com/openid/AppAuth-Android

      There's also a FusionAuth Swift Client maintained by the community.