Org Invitation Link Support for Auth0

Hey Guys,

I just setup the Auth0 connection and everything works relatively well. Problem is that when a user receives a invitation link for an org, the WeWeb Auth0 Login/Signup Action doesnt seem to be able to handle that invite link properly.

This relates to the login/sign up logic only, I am aware of that the generation of the invite link itself is best done via API

It would be nice to get this working as this would allows B2B saas to invite their own org members if personal sign up is disabled which is common for seat-based b2b saas

Is there any workaround to get this to work with the provided Auth0 plugin? Are there any plans to give the user more flexibility to passthrough more parameters instead of only being able to specifiy the organization param?

I checked the plugin repo and could do the changes by myself, however it doesnt seem like you allow custom/forked plugins

const options = {
  authorizationParams: {
    ...
    organization: 'org_XXXXX', //already covered by weweb
    invitation: 'XXXXXXX' // not covered
  }
};

await auth0Client.loginWithRedirect(options);

Thanks a lot!

Yeah Auth0 doesn’t is the simpliest to combo with WeWeb x backend Y
Basicly, short answer is Auth0 Actions, Triggers (in your Auth0 workspace)
calling the API

or use the Auth0 MCP

1 Like