我正在尝试使用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消息,指出密钥无效。
我在做什么错?我保存了错误的令牌吗?