I have successfully received google sign-in token from my Android app on my web server written in Go running on GAE. I do not wish to use the
https://www.googleapis.com/oauth2/v3/tokeninfo?id_token=XYZ123
because it has the issue about latency and potential network errors warned on google sign-in integration guiding page. So I am finding the way to use Google API Client Library for Go and I found this
https://github.com/google/google-api-go-client/blob/master/GettingStarted.md
I found that it was more complicated than the Java and Python Google API Client Library that I would need to just call the GoogleIdTokenVerifier method or verify_id_token function to get the information of the google user that has signed in on the Android app. I am not sure I am going to the right direction. Please guide me on how to verify the google sign-in token received from Android app.