Flutter - 如何使用 Google Drive API 下载公共文件

dja*_*ler 3 google-drive-api google-signin flutter googlesigninaccount

我正在尝试第一次使用 Google API、Google Drive API,我正在使用 Google SignIn 对用户进行身份验证。启用 Google Drive API 后,我创建了 ClientId、ClientSecret 和 Scope,但我不知道如何使用它们。我最终使用 GoogleSignInAccount 的 authHeaders 创建了一个 HTTP 客户端。

我不需要访问我的文件或管理它们,我只需要进行身份验证,因为我可能需要下载大文件,使用直接链接不起作用,因为它有一个无法扫描的大文件的确认窗口。

当我尝试使用公共文件的 ID 下载公共文件时,我总是收到以下错误。

class GoogleHttpClient extends IOClient {
  Map<String, String> _headers;

  GoogleHttpClient(this._headers) : super();

  @override
  Future<IOStreamedResponse> send(BaseRequest request) =>
      super.send(request..headers.addAll(_headers));

  @override
  Future<Response> head(Object url, {Map<String, String> headers}) =>
      super.head(url, headers: headers..addAll(_headers));

}

class GDriveHelper {

  // NOT USING
  //static final clientId = "??????.apps.googleusercontent.com";
  //static final clientSecret = "??????";
  //static final scopes = [ga.DriveApi.DriveFileScope];

  static UserController userController = Get.find();

  static Future<void> download(String fileId) async {

    Map<String, String> headers = await userController.googleSignInAccount.authHeaders;

    var client = GoogleHttpClient(headers);
    var drive = ga.DriveApi(client);

    await drive.files.get(fileId).then((file){

      print("FILE: $file");

    });



  }

}
Run Code Online (Sandbox Code Playgroud)

当我调用该方法时,我收到此错误:

await GDriveHelper.download(fileId);
            
DetailedApiRequestError(status: 403, message: Insufficient Permission: Request had insufficient authentication scopes.)
Run Code Online (Sandbox Code Playgroud)

Tan*_*ike 5

从您的问题中,我可以了解到您尝试下载公开共享的文件。从我们的讨论中,我确认 、clientIdclientSecret没有scopes被使用。从这些情况来看,作为一个简单的方法,我想建议使用 API 密钥下载公开共享的文件。API密钥可以下载公开共享的文件。请求可以简单如下。

样品请求:

GET https://www.googleapis.com/drive/v3/files/[FILEID]?alt=media&key=[YOUR_API_KEY]
Run Code Online (Sandbox Code Playgroud)

示例卷曲命令:

作为测试,当您使用curl 时,示例curl 命令如下。

除 Google 文档文件外的文件:
curl "https://www.googleapis.com/drive/v3/files/[FILEID]?alt=media&key=[YOUR_API_KEY]"
Run Code Online (Sandbox Code Playgroud) 谷歌文档文件:
curl "https://www.googleapis.com/drive/v3/files/[FILEID]/export?mimeType=[mimeType]&key=[YOUR_API_KEY]"
Run Code Online (Sandbox Code Playgroud)

参考: