FusionAuth
    • Home
    • Categories
    • Recent
    • Popular
    • Pricing
    • Contact us
    • Docs
    • Login
    1. Home
    2. marco
    3. Topics
    M
    • Profile
    • Following 0
    • Followers 0
    • Topics 5
    • Posts 15
    • Best 3
    • Controversial 0
    • Groups 0

    Topics created by marco

    • M

      Error in global registration counts

      General Discussion
      • • • marco
      6
      0
      Votes
      6
      Posts
      699
      Views

      danD

      Hmmm. I saw a similar issue and filed a bug: https://github.com/FusionAuth/fusionauth-issues/issues/1466

      Feel free to file a bug with reproducible steps in the issues repository or add comments to #1466 if you have any more info.

    • M

      [ERROR] FusionAuth's login page redirecting issue on Android

      Q&A
      • • • marco
      6
      1
      Votes
      6
      Posts
      5.8k
      Views

      F

      @mgetka thanks so much for the explanation.

      "to redirect iOS users directly to pseudo protocol. And redirect all the android user to a custom interstitial site. "
      I believe this would be the only option for the time being.

      Deep Linking doesn't work at least for my application:
      Flutter -> flutter_appauth(4.0.1) -> fusionauth

      While the same scenario could work with Auth0, following this blog.

      Comparing with the solution with FusionAuth.
      FusionAuth open a new tab for Facebook and Google login.

      While Auth0 continues on the same page with a page redirection.

    • M

      Webhook on user creation using social logins

      Q&A
      • • • marco
      2
      0
      Votes
      2
      Posts
      466
      Views

      danD

      This should work. (For example, 1.20.1 fixed an issue with the twitter api not firing: https://github.com/FusionAuth/fusionauth-issues/issues/937 and I'd expect Facebook to work as well.)

      Can you please share more details about your configuration?

      what version of FusionAuth are you running how did you set up your webhooks? does the 'send test webhook' work? do any webhooks fire for any events at all? does any social login fire the user.create.registration webhook?
    • M

      JWT token with roles

      Q&A
      • • • marco
      9
      0
      Votes
      9
      Posts
      9.4k
      Views

      M

      @dan said in JWT token with roles:

      "applicationId": "ffbbef97-a2c0-49eb-990d-bd6e96acf2f9",
      "roles": [
      "USER"
      ]

      Hey Dan!

      Now we got it working.

      For reference, we were not passing applicationId inside the request body, that's why the roles were not included in the token.

      Thanks again for the time Dan!

    • M

      Social login with Flutter App

      Q&A
      • • • marco
      11
      0
      Votes
      11
      Posts
      2.1k
      Views

      danD

      Just wanted to update. A user opened: https://github.com/FusionAuth/fusionauth-dart-client/issues/7

      To clear things up, with a public client like a mobile application, you can't safely store a client secret (it'll be shared among all the native apps and can be found via decompilation).

      In this scenario, you should disable Require authentication in the FusionAuth Application configuration and use PKCE to secure communication with the Token endpoint.

      You can use the exchangeOAuthCodeForAccessTokenUsingPKCE client method to do so.

      This is also outlined here: https://fusionauth.io/docs/v1/tech/client-libraries/dart/