gpt4 book ai didi

javascript - 谷歌驱动器范围 'Error Daily Limit for Unauthenticated Use Exceeded. Continued use requires signup.'

转载 作者:行者123 更新时间:2023-11-28 04:09:26 28 4
gpt4 key购买 nike

收到错误“超出未经身份验证的使用的每日限制”。继续使用需要注册。当添加'https://www.googleapis.com/auth/drive时' 范围。如果我将其排除在范围之外,它适用于与其他范围相关的所有其他功能。我需要在复制文件的范围内使用它。

public handleClientLoad() {
gapi.load('client:auth2', function () {
gapi.client.init({
discoveryDocs: ['https://sheets.googleapis.com/$discovery/rest?version=v4',
'https://www.googleapis.com/discovery/v1/apis/drive/v3/rest'],
clientId: 'MyclientID*.apps.googleusercontent.com',
scope: ` https://www.googleapis.com/auth/drive https://www.googleapis.com/auth/drive.metadata.readonly https://www.googleapis.com/auth/spreadsheets `
}).then(() => {

gapi.client.drive.files.copy({
'fileId': 'My File ID',
'resource': {
'parents': [
'MY Parent File'
],
'name': 'My File Name'
}
})

});
});
}

最佳答案

当您提交没有授权 http header 的 API 请求时,会返回该错误。您可以跟踪网络流量看看是否是这种情况。如果是这样,我怀疑您正在做一些诸如错误语法之类的事情来破坏gapi客户端库,使其无法正常运行。有控制台消息吗?

关于javascript - 谷歌驱动器范围 'Error Daily Limit for Unauthenticated Use Exceeded. Continued use requires signup.',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46427529/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com