I have a simple requirement to read the token in asp.net core web api for every request and read the sub part of token which has UserID. Token validation will be done by a third party rest api call which will tell if token is valid or not. No validation logic should exist in my api.
Unfortunately all the articles I have read, they are validating the token, which I don't want in my case.
Any help would be much appreciated.