I have a ASP.NET Core 3.1 API that has to connect to another external API. To make requests to this API, it needs an OAuth 2 access token so i need to store to reuse it until it runs out and request another one if needed.
So which is the best option to store it?
I've read about using a custom class to use an static HttpClient but it doesn't work for what i have to do
