32
How to store user's access tokens/API keys without hashing them?
(lemmy.pe1uca.dev)
Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!
Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.
Hope you enjoy the instance!
Rules
Follow the wormhole through a path of communities !webdev@programming.dev
Seconded. In particular:
Why? What qualifies as an "extra" HTTP call, and why does it matter?
Well, an "extra HTTP call" is any call besides the one required for the client to access my API, in this case is an extra call to generate an access token.
Why does it matter? In words of the client: "making a call to generate a token is slow"
The client is not always right. Make them define "slow" in concrete comparison to the rest of the things that happen in their product and once you have a reasonable number, I think it's likely you can beat it.
Completely agree with you, I made that comment, but most people agreed with the client '-.-
If it was happening every page load or every API call, you might have a weak argument.
Regardless, what's the general architecture of this app? You've got an HTTP API, what else? How much is under your control, versus third parties?
I agree, the token has a lifespan of some hours so it could be generated after that amount of time, which for a ~400ms call is not that much, but I was overruled .-.
The only thing I control is the API, the client's implementation is outside of my control (although I know is a backend service).
Okay, so you're building an API that another server needs to auth with? If the opposing side is a server, a pre-shared PKI cert ought to work. If the opposing side is a potentially-untrustworth client application, the truth is there's nothing that's going to fit such a simple definition of "extra". The back and forth it takes to establish token exchange is not "extra" is the cost you have to pay to get security.
Are there a limited number of clients hitting the API? Would client side TLS certs be an option?