I'm implementing Auth0 with my ASP.NET Core 2.1 app with React front end.
After the user authenticates, I do get both an access_token
and an id_token
. I'm clear that I send the access_token
in the header to gain access to my API methods but I'm not sure how to handle the id_token
.
Do I place the id_token
in the header as well? If so, what key do I use for it? I'm sending the access_token
with the key Authorization
-- see below.
Not sure how to send the id_token
and would appreciate some pointers on this. Thanks.