已解决 感谢Dimu Designs的帮助。
以下作品。
function myFunction(){ var url =“ https://api.fortnitetracker.com/v1/profile/pc/Ninja”; var apiKey =“ xxx-xxx-xxx”;
var res = UrlFetchApp.fetch( 网址, { “标题”:{ “ TRN-Api-Key”:apiKey } }); var content = res.getContentText(); Logger.log(res); Logger.log(content);
}
问题
我正在尝试使用Google表格中的Google App脚本来调用外部Fortnite API以请求播放器数据。我对如何在传递请求时添加API密钥作为标头感到困惑。
这是我到目前为止构建的(请不要笑)!...
function myFunction(){var res = UrlFetchApp.fetch(“ https://api.fortnitetracker.com/v1/profile/PC/Ninja?”); var content = res.getContentText(); Logger.log(res);
Logger.log(内容); }
当我尝试运行此代码时,我得到以下错误:
请求失败 https://api.fortnitetracker.com/v1/profile/PC/Ninja?返回的代码 401.服务器响应被截断:{“ message”:“在请求中未找到API密钥”}(使用MutantHttpExceptions选项检查完整响应
我已经尝试过根据许多不同的帖子以多种方式添加我的API密钥,但这是行不通的,只会使我更加困惑(这很容易做到)。
有人知道我如何完成脚本以确保获得信息吗? :)
---编辑---
首先,感谢帮助人员,这是我们目前的位置。我现在尝试了以下方法:
var url =“ https://api.fortnitetracker.com/v1/profile/pc/Ninja”;变种 apiKey =“ xxx-xxxx-xxx”;
var response = UrlFetchApp.fetch( 网址, { “标题”:{ “ TRN-Api-Key”:apiKey } });
这次返回的是403错误,而不是401错误。
请注意,我还尝试过使用“基本”对标头进行身份验证,但这不起作用。
答案 0 :(得分:1)
编辑 我怀疑该API使用了自定义标头。当您注册API密钥时,将获得以下格式的字符串:
TRN-Api-Key:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
我在这里猜测,但是冒号前面的文本似乎是一个自定义标头,冒号后面的字符串是API密钥。
在没有适当文档的情况下,这仍然是仍然,但您可以尝试以下操作:
var url = "[FORTNITE-API-ENDPOINT]";
var apiKey = "[YOUR-API-KEY]"; // sans header and colon
var response = UrlFetchApp.fetch(
url,
{
"headers":{
"TRN-Api-Key":apiKey
}
}
);
此外,请确保查看UrlFetchApp文档以供将来参考: https://developers.google.com/apps-script/reference/url-fetch/url-fetch-app