google OAuth 同意屏幕 - Google 尚未验证此应用程序 - “出了点问题”

问题描述 投票:0回答:1

我正在从谷歌驱动器获取数据,首先我在测试中使用受限范围,但它给我错误谷歌尚未验证此应用程序

  Future _signinUser() async {
    final googleSignIn = GoogleSignIn(
      scopes: [
        drive.DriveApi.driveReadonlyScope,
      ],
    );
    account = await googleSignIn.signIn();
    return;
  }

enter image description here enter image description here enter image description here

如何在不验证谷歌应用程序的情况下获取测试数据?

flutter google-api google-drive-api google-oauth scopes
1个回答
0
投票

即使您的应用程序未经验证,您仍然可以使用它,并且仍然可以通过单击屏幕上显示该应用程序未经验证的“继续”来授权它,而不是单击返回安全,您只需确保您已登录使用与您创建帐户相同的用户,或者您必须添加其他用户作为测试用户

© www.soinside.com 2019 - 2024. All rights reserved.