Google云端硬盘API列表文件返回代码400错误请求

时间:2018-09-13 08:26:10

标签: google-drive-api

我正在尝试使用https://www.googleapis.com/drive/v3/files保存为cookie客户端的令牌在服务器端列出文件。

这是我的JavaScript代码:

function signIn(googleUser) {
    document.cookie = "token=" + googleUser.getAuthResponse().id_token + ";path=/";
    window.location = "home";
}

这是客户端请求:

std.net.curl.get("https://www.googleapis.com/drive/v3/files?key=" ~ *token);

总是返回代码400,并带有JSON消息,指出密钥无效。

我在做什么错?我保存了错误的令牌吗?

0 个答案:

没有答案