#Authentication - Token Authentication like knox auth token vs JWT Token
3 messages · Page 1 of 1 (latest)
This is a big question that I'm probably not qualified to answer but my opinion is to use the simplest thing that works for your use-case. I'd avoid JWT unless you know you need it (or more likely, your boss makes you use it)
Thanks for your answer. At the moment I'm using the knox auth tokens. I get the token only with a session authenticated get request. The Token expires 8 hours later and I'm still session authenticated to get a new token. But is this production ready?