gpt4 book ai didi

javascript - 语法错误: Unexpected token: T at json.解析

转载 作者:行者123 更新时间:2023-12-02 14:33:58 24 4
gpt4 key购买 nike

我是 google 脚本的新手,我想在用户登录时从 URL 获取数据。我编写了一些代码,但执行时出现以下错误: SyntaxError: Unexpected token: T

我知道这个问题之前已经被问过,但我找不到解决我的问题的方法...

function myFunction() {
var endpoint = 'rule-sets';
var url = 'https://example.com/api/'+endpoint;
var restHeaders = {
'X-Application-Key': 'f3ez1a48f06838b7238z20cff80e010bf0c42cfp',
'Authorization':'Bearer bm9scnVuMDQ4Z2FvaWpvdHBqa2Y1djA5WWavTiElV5DyYjdxb3UxNnVyMzRoNWhsISPBmXNyZDFtMCYzMDk2JjE0NjE5MDI3NTYwODI=',
}
var options = {
'method' : 'get',
'headers': restHeaders,
'muteHttpExceptions': true,
};
var urlResponse = JSON.parse(UrlFetchApp.fetch(url, options));
Logger.log(urlResponse);
Logger.log(urlResponse.data.length);
}

最佳答案

查看 https://developers.google.com/apps-script/reference/url-fetch/url-fetch-app#methods签名看起来是这样的:

var urlResponse = UrlFetchApp.fetch(url, options);
var jsonContent = JSON.parse(urlResponse.getContentText());
Logger.log(jsonContent);
Logger.log(jsonContent.data.length);

您正在解析 fetch 的返回值,它是一个对象。

关于javascript - 语法错误: Unexpected token: T at json.解析,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37611160/

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