#drive #api-client #user #google #permissions

google-drive

Google Drive API 的一个完全生成且具有意见的 API 客户端

44 个版本

0.7.0 2023 年 7 月 19 日
0.6.0 2023 年 3 月 31 日
0.5.1 2022 年 11 月 18 日
0.4.1 2022 年 7 月 13 日
0.1.2 2020 年 7 月 10 日

#6 in #drive

Download history 271/week @ 2024-03-14 162/week @ 2024-03-21 248/week @ 2024-03-28 250/week @ 2024-04-04 247/week @ 2024-04-11 220/week @ 2024-04-18 311/week @ 2024-04-25 225/week @ 2024-05-02 265/week @ 2024-05-09 372/week @ 2024-05-16 237/week @ 2024-05-23 222/week @ 2024-05-30 202/week @ 2024-06-06 222/week @ 2024-06-13 220/week @ 2024-06-20 124/week @ 2024-06-27

831 每月下载量
用于 cio-api

MIT 许可证

310KB
6.5K SLoC

google-drive

Google Drive 的一个完全生成、具有意见的 API 客户端库。

docs.rs

API 详情

管理 Drive 中的文件,包括上传、下载、搜索、检测更改和更新共享权限。

API 服务条款

联系方式

名称 网址
Google https://google.com

许可证

名称 网址
创意共享署名 3.0 http://creativecommons.org/licenses/by/3.0/

客户端详情

此客户端基于 API 规范版本 v3Google Drive OpenAPI 规范 生成。这样,当添加新功能时,它将保持最新状态。该软件包的文档与代码一起生成,以便轻松使用此库。

要安装库,请在您的 Cargo.toml 文件中添加以下内容。

[dependencies]
google-drive = "0.7.0"

基本示例

典型使用将需要初始化一个 Client。这需要一个用户代理字符串和一组凭证。

use google_drive::Client;

let google drive = Client::new(
    String::from("client-id"),
    String::from("client-secret"),
    String::from("redirect-uri"),
    String::from("token"),
    String::from("refresh-token")
);

或者,库可以在环境中搜索客户端所需的大部分变量

  • GOOGLE DRIVE_CLIENT_ID
  • GOOGLE DRIVE_CLIENT_SECRET
  • GOOGLE DRIVE_REDIRECT_URI

然后您可以从环境中创建一个客户端。

use google_drive::Client;

let google drive = Client::new_from_env(
    String::from("token"),
    String::from("refresh-token")
);

传递空值给 tokenrefresh_token 是可以接受的。在客户端的初始状态下,您将不知道这些值。

要启动一个全新的客户端并获取 tokenrefresh_token,请使用以下命令。

use google_drive::Client;

async fn do_call() {
    let mut google drive = Client::new_from_env("", "");

    // Get the URL to request consent from the user.
    // You can optionally pass in scopes. If none are provided, then the
    // resulting URL will not have any scopes.
    let user_consent_url = google drive.user_consent_url(&["some-scope".to_string()]);

    // In your redirect URL capture the code sent and our state.
    // Send it along to the request for the token.
    let code = "thing-from-redirect-url";
    let state = "state-from-redirect-url";
    let mut access_token = google drive.get_access_token(code, state).await.unwrap();

    // You can additionally refresh the access token with the following.
    // You must have a refresh token to be able to call this function.
    access_token = google drive.refresh_access_token().await.unwrap();
}

依赖关系

~22–40MB
~733K SLoC