@kadin
To get a correct Auth0 bearer token, you will need to follow these steps:
- Sign up for an Auth0 account and create a new Auth0 application.
- Go to the Auth0 dashboard and navigate to the API section.
- Click on the API that you created for your application.
- Click on the "Test" tab and then click on the "Copy token" button to copy the bearer token to your clipboard.
- Use this bearer token in the Authorization header of your API requests. The format for the Authorization header should be "Bearer {YOUR_BEARER_TOKEN}".
- Make sure to include the correct audience and scope in your API request as specified in your Auth0 application settings.
By following these steps, you should be able to get a correct Auth0 bearer token to authenticate and authorize your API requests.