I’m using GitHub - auth0/node-auth0: Node.js client library for the Auth0 platform.
I have a backend monolith in nodejs and I want to manually create users using management API.
However, I am confused about this:
import { ManagementClient } from 'auth0';
var management = new ManagementClient({
domain: '{YOUR_TENANT_AND REGION}.auth0.com',
clientId: '{YOUR_CLIENT_ID}',
clientSecret: '{YOUR_CLIENT_SECRET}',
});
Where do I get CLIENT_ID and CLIENT_SECRET from?
I made a new API for my backend (NOT application, I clicked API) and there’s no CLIENT_ID or CLIENT_SECRET.
I only see these if I create an APPLICATION. However, this is a purely backend server side codebase.
Can someone advise me?
Thanks