Does Auth0 have a straightforward way to just create a JWT token for my payload, instead of building an actual application with SDK integrated for authorization? Thanks!
You cannot access Auth0’s private key. This is by design.
The best way is to generate the access token per a normal flow, like Auth Code. You cannot just “generate a JWT” as that skips all the security we make sure is in place.