baumblatt / capacitor-firebase-auth

Capacitor Firebase Authentication Plugin
MIT License
261 stars 129 forks source link

Google sign in requesting full access to Google Drive #129

Closed jonmayhew closed 3 years ago

jonmayhew commented 3 years ago

Hi, I've been testing an app with this plugin and I've noticed that it's requesting full access to google drive when signing in. Is there something I'm setting incorrectly? I can't see why this would need full access to someone's drive account. It's also telling me that the app is not verified. This app is already in the app store and I wasn't getting this issue before. I submitted it to the app store for the first time about 3 weeks ago. I'm wondering if the second issue has to do with the certificate that I used when building, but I'm not sure. I only mention it in case they are related. Thanks!

Screen Shot 2020-11-09 at 12 22 47 AM

Screen Shot 2020-11-09 at 12 24 12 AM

baumblatt commented 3 years ago

Hi Jon,

Please review your capacitor.config.json and be sure that you are not asking for this permission.

Something like that:

            "permissions": {
                "google": []
            }

Please let me know if you need more help or we can close this issue.

Best regards, Bernardo Baumblatt

jonmayhew commented 3 years ago

Thanks for the response! Here's what I have there:

Screen Shot 2020-11-09 at 8 26 16 AM

What should I have here? I don't have anything that should need google perms except this plugin.

baumblatt commented 3 years ago

Hi Jon,

If you need only authentication, please, remove all itens from permissions.google array.

Best regards,

jonmayhew commented 3 years ago

Thank you that did it!