I'm working with a project in Odoo and I have enabled google Sign in. The problem is, when a user tries to log in from different browsers at the same time, only the latest log in session is retained and the older ones are expiring.
For example - I sign in to Odoo using google on chrome and then sign in on Mozilla firefox. At this point if I refresh my page on chrome where I signed in, I will be logged out and will be asked to sign in again but I'm still signed in on firefox.
After a lot of considerations, it came to my mind that probably the old refresh tokens are expiring. However on the official docs, I saw this:
A token might stop working for one of these reasons:
- The user has revoked access.
- The token has not been used for six months.
- The user account has exceeded a certain number of token requests.
If this is not the case then why can't I stay signed in from multiple browsers at the same time? What should I do in order to stay signed in using google from multiple browsers?
Any help would be appreciated!