I hope this is not a naive question but how should you save a jwk when getting it from a .well-known/jwks.json domain.
Currently I hard code the modulus and exponent but that doesn't seem to be a great solution.
Adding it to a database seems pointless as it would be an unreasonable call because the e & n value wouldn't change.
Storing in cache seems like one of the best solutions.
Making the call to .well-known/jwks.json for every every request just seems unessesary as well.
What is everybody else's way of doing it?