Navigation

    FusionAuth
    • Login
    • Search
    • Home
    • Categories
    • Recent
    • Popular
    1. Home
    2. Tags
    3. webhooks
    Log in to post
    • All categories
    • dan

      user.create webhook and bulk imports
      Q&A • import webhooks • • dan

      2
      0
      Votes
      2
      Posts
      36
      Views

      dan

      No. But the user.bulk.create would. See https://fusionauth.io/docs/v1/tech/events-webhooks/events/#user-bulk-create for more details.

    • dan

      Facebook images missing
      Q&A • facebook images webhooks • • dan

      2
      0
      Votes
      2
      Posts
      31
      Views

      dan

      So, this appears to be a limitation of Facebook. Here are the API docs from Facebook which have no mention of how long the image URL returned if you pass redirect=0 is good for.

      Looks like some Auth0 users also encountered this.

      So I think you are on the right path with downloading the user's Facebook images and updating them on your side every time a user logs in.

    • dan

      refresh_token grant webhook event?
      Q&A • refresh token webhooks • • dan

      2
      0
      Votes
      2
      Posts
      28
      Views

      dan

      Is this what you are looking for? https://fusionauth.io/docs/v1/tech/events-webhooks/events#jwt-refresh

      Make sure you enable the webhook in the tenant as well as in the webhook definition.

    • dan

      webhook event ids
      Q&A • webhooks login • • dan

      2
      0
      Votes
      2
      Posts
      29
      Views

      dan

      This is a unique Id field per event, we do not currently persist this event for later retrieval.

      If you want any persistent storage of the events, you would need to capture and store the event.

    • dan

      Logs for webhooks
      Q&A • webhooks logging • • dan

      2
      0
      Votes
      2
      Posts
      44
      Views

      dan

      There is not any special logging for webhooks.

      If an exception occured that would cause it not to be fired, that will be in the log. If it is not being fired and there is no exception, then it is likely that the webhook is not configured to be sent for the particular tenant that you’re using.

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

    • dan

      I'm seeing weirdness around timestamps and I use jackson
      Q&A • webhooks timestamps java data serialization • • dan

      2
      0
      Votes
      2
      Posts
      3471
      Views

      dan

      Apparently jackson + friends make assumptions when it comes to parsing raw -> ZonedDateTime. It appears that the ZonedDateTime for createInstant when deserializing timestamps are not being handled properly somehow, so you need custom code. We have our own Jackson serializer and deserializer for ZonedDateTime to ensure we always get milli in and milli out.

      Here's the code (Apache2 license) and the maven repository links if it's helpful.