1. Visit the External Authentication page in your Dynamic dashboard.
External Authentication Page
  1. Provide values for the following fields:
External Authentication Fields
  1. When you are ready, enable the feature using the toggle.
External Authentication Enable
  1. Additionally, we provide a way for you to check a JWT against your saved settings, and we will return the errors, if any.
External Authentication Check JWT

Providing an external JWT to dynamic

Once you have access to your user’s JWT and ID, just pass them both to Dynamic by calling:
await dynamicClient.auth.signInWithExternalJwt({ externalJwt, externalUserId })
or
await dynamicClient.auth.verifyWithExternalJwt({ externalJwt, externalUserId })
This promise resolves when the sign in is complete — and that’s it! You’re done. You can find the reference for this method here.