Gizem Malçok
Gizem Malçok

Reputation: 21

Google Drive appDataScope permission not edit

I have Google drive integration in my Flutter project. My customer wants the following option removed from the OAuth consent request screen.

"see create and delete its own configuration data in your google drive"

How can I remove this?

enter image description here

Upvotes: 1

Views: 106

Answers (1)

Linda Lawton - DaImTo
Linda Lawton - DaImTo

Reputation: 117271

The drive.appdata scope is the one that is displaying that.

https://www.googleapis.com/auth/drive.appdata See, create, and delete its own configuration data in your Google Drive

Just remove that scope and it will no longer appear.

A side effect will then be that your application no longer will have access to See, create, and delete its own configuration data on the users Google drive account.

Upvotes: 1

Related Questions