I have an django application which gets the google drive token from front-end to be able to download the file from google drive. Then stores the token in the database. I used the 100 char field for storing the token, but starting from database I get error, that token has bigger length.
So how can I know what is the max length of the took google API will return?
I saw the answer for question Can access token be longer than 255 characters? which says I shouldn't use the limit.
But how I can make sure I know when google changes something in their API?