Navigation

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

      How to get populated user.data after user registraion.
      Comments & Feedback • populate jwt lambda webhook registration • • muravyov.alexey

      7
      0
      Votes
      7
      Posts
      187
      Views

      dan

      @muravyov-alexey Thank you!

    • T

      Lambda reconcile does not remove role from registration
      Q&A • azure lambda oidc reconcile registration • • tl+fa

      12
      0
      Votes
      12
      Posts
      252
      Views

      joshua

      Hi @tl-fa,

      You can view our Roadmap Guidance regarding how features are implemented into FusionAuth. A good snapshot of current development can be found here as well.

      We will certainly update any related issue cards as development moves forward!

      Thanks!
      Josh

    • dan

      Can I register a user for additional applications in a SAML reconcile lambda
      Q&A • saml lambda • • dan

      2
      0
      Votes
      2
      Posts
      62
      Views

      dan

      Nope. While you can modify attributes of the user object and the changes will be persisted, you can't modify the registrations of that user.

    • dan

      Kickstart and lambdas and newlines
      Q&A • kickstart lambda • • dan

      2
      0
      Votes
      2
      Posts
      70
      Views

      dan

      Can you use an include for the function body? For example: (where myLambda.ftl is your Lambda function in a folder named lambdas)

      "lambda":{ "body": "@{lambdas/myLambda.ftl}", }

      That should preserve your line returns if you include it that way. Hope that helps!

    • dan

      Can we set multiple "aud" claims in FusionAuth?
      Q&A • lambda claims jwt faq • • dan

      2
      0
      Votes
      2
      Posts
      88
      Views

      dan

      We do not support this directly in FusionAuth, but you could use a Lambda to set the aud claim to whatever you want.

      The specification allows for a string value, or an array of string values, so you could create a Lambda with something like: jwt.aud = [ 'foo', 'bar' ];

      More about Lambdas and JWTs here: https://fusionauth.io/docs/v1/tech/lambdas/jwt-populate