Can anybody help me...? I would like to use Google sign-in as a login in my App. As I need a proper authentication of my users in front my server, I need to verify the freshness and the single-use of the id_token. In other words, the id_token should be recently created and not used. Contrariwise, impersonation could occur...
According OpenId Connect standard, there is a nonce or challenge set by the server and sent to the user's client, which is added to the request and included in the id_token as a response. This nonce helps in such verification.
Is there a way in which the freshness the single-use of a token can be verified using Google sign-in/identity?
Many thanks in adavance!