My website uses Facebook for signin / signup. Access token is obtained from the server side with offline_access permission. The website functionality is such that, all users can see each other's profiles, their mutual friends etc. Offline_access worked fine in that case as even if an user never logs into the site for a very long time his profile details were visible in the site.
Now with the deprecation of offline_access, the access token is returned with an expiry time of sixty days. So, if a user does not use my site's Facebook login for more than 60 days, then his profile will be as good as deactivated as information like mutual friends etc., will no longer be accessible.
Please let me know if there is a way to prevent this from happening. Can the access token be refreshed without the user explicitly signing in again?