Oauth2 introduces the idea of having expiring access token and non-expiring (or long term) refresh tokens used to get access to a new access token.
This additional security layer has a cost (backend as well as frontend). Is the benefit of this measure overweighting the costs ?
Well this sounds like a nice process if you are planning to deploy your API over http, but is it still useful when you use SSL (TLS) ?
All my researches about this question over the internet pointed somehow to "if an attacker steals your non-expiring access token...", but wait, no, nobody won't be able to middle-manize my token because it's over HTTPS.
So do we trust HTTPS and all of this is overkill dogma, or is there any other reason to worry that my user's token may be stolen ?