I already have a rest API with bearer token implemented and now I need allow the api's client can connect with api with the same token for 1 year for example. I thought that implementing refresh token in API will be possible achieve my goal, but is not possible take a new token with a refresh token after the original token is expired and I think that is a bad smell increase the time to every token in the API being that client must choose whether it wants a offline token or not.
My API was built with ASP.NET Web API 2 where already exists a implementation of the OAuth 2.