I currently try to get the ID token from an https or curl request. Currenlty I use
https://my-auth.eu.auth0.com/authorize?
response_type=code&
client_id=frontend-client-id&
redirect_uri=http://127.0.0.1:8001/docs/oauth2-redirect&
scope=openid profile email read:sample&
audience=https://my-auth.eu.auth0.com/api/v2/&
resp.
https://my-auth.eu.auth0.com/authorize?
audience=my-backend-audience&
response_type=id_token&
client_id=frontend-client-id&
redirect_uri=undefined
yet I just get
Could you help me to get a feasible ID token by using a curl or https request?