I’m implementing Google login using the Google client libraries on both iOS and Android. I need very minimal access: only the ability to write new files to the user’s Drive. As such, the only scope I request is https://www.googleapis.com/auth/drive.file
. However, the login looks like this:
It’s telling the user that the app will have access to their personal info and email and be able to associate them to this info. I do not need or want that info/ability, and it looks suspicious for my app to request that, since it does not need it. Is it possible for me to not request that info? Or does every usage of the Google API inherently request that?