Can I get idToken from auth0 rule?

Is there a way to access the idtoken that would be created when the user was created in the context of auth0 rules?

I would like to synchronize user registration with my backend system and need an idtoken with which auth0 registration will be created. This way I can send http so that the data in my rules is triggered.

+4
source share
1 answer

No, because the identifier token is generated only when all rules are completed. The reason for this is that further rules may prevent the user from authenticating or changing their profile before the actual token is created.

- Auth0 Client Credentials : https://auth0.com/docs/api-auth/grant/client-credentials.

API Auth0 , .

+2

Source: https://habr.com/ru/post/1661072/


All Articles