I saw a route containing the token in an Asp.net project. I do not code in the backend but it is not looking safe. I am not sure whether to do such things.
[HttpGet("{id}/{token}")] `
...
If this is not good practice, how would I work with the HTTP-Headers? If I send the token with the Headers, how would/should I receive and work with the token?
Thank you guys.