I’ll try to be brief. We are using auth0 for login to our site, primarily through the google/social connection type, returning an RS256-based JWT.
Our data team wants to be able to call the same APIs that our frontend does, via an automated script and a service account. I tried logging into google programmatically but it doesn’t seem like that is well supported anymore.
I then looked into adding username/password auth, to be used solely internally. I added a database connection type, enabled it in our application, and created a test user. I even verified the user’s email. But, when I go to “sign in as user”, I get back the following error;
Connection type Username-Password-Authentication is not defined in the VALID_CONNECTIONS array.
I’m open to either a hint as to why u/n auth is not working or a better way to obtain a JWT usable with our API that does not require user interaction (and preferably that won’t need manual intervention when the public keys are rotated)
Thanks,
Patrick Abbott