I'm using the Credential Manager to request a Google Id Token in an Android app. It works fine but the bottom-sheet that appears asks the user if they are ok sharing their name, profile picture, and email with the app.
I don't want any of those personal details, I just need the Google Id Token to be able to say if a future login corresponds to the same user.
Is there a way to avoid asking for that information?
I'm using the Credential Manager to request a Google Id Token in an Android app. It works fine but the bottom-sheet that appears asks the user if they are ok sharing their name, profile picture, and email with the app.
I don't want any of those personal details, I just need the Google Id Token to be able to say if a future login corresponds to the same user.
Is there a way to avoid asking for that information?
Share asked Mar 9 at 19:55 MontanerMontaner 5445 silver badges17 bronze badges1 Answer
Reset to default 0Currently, the following scopes are automatically included there and there is no way to request a subset through Credential Manager: openid, email, profile; seems what you want is just the openid scope but that is currently not possible.