Currently, I am using OAuth 2.0 to access Google APIs. I got access token and refresh token, used the access token to connect to Google. Because the access token only lasts for 1 hour, I have to use refresh token to get new access token. However, reading the document:
There is currently a limit of 50 refresh tokens per user account per client.
does this mean that my refresh token can be used only 50 times or I can have 50 different refresh tokens (I would think by requesting new authorization). My English is not that good so sorry for asking this question.