通过isAppAuthorized属性的Google云端硬盘查询文件

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

使用isAppAuthorized方法搜索文件时,是否可以在q参数中使用文件属性files.list作为查询项?我在文档部分搜索查询词中找到了表File query terms,但是不确定该表是否是受支持查询词的完整列表。

使用https://www.googleapis.com/drive/v3/files?q=isAppAuthorized = false测试REST API会导致错误:

{
    "error": {
        "errors": [
            {
                "domain": "global",
                "reason": "invalid",
                "message": "Invalid Value",
                "locationType": "parameter",
                "location": "q"
            }
        ],
        "code": 400,
        "message": "Invalid Value"
    }
}

我只想确保这不是我的错。

google-api google-drive-api
1个回答
0
投票

[file.list上的Google驱动器搜索功能非常有限,如果选中search terms,您将看到isAppAuthorized不是可搜索的选项。

enter image description here

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