Hello
We have a lot of test cases in our suite which requires login. Going through the login flow in the test case everytime is painfully slow. What we want is to somehow get the tokens directly without going through the Auth0’s Universal Login flow in our test runs.
What I have been exploring is the /oauth/token
endpoint i.e. using resource password grant. Although, this returns a RS256 token and our application currently relies on HS256.
How can we generate HS256 token via resource password grant?