我正在尝试从中获取NWS警报
their new GeoJSON API
,但在通过谷歌应用程序脚本获取数据时,出现了500个错误。
function getAlerts() {
var rawData = UrlFetchApp.fetch('https://api.weather.gov/alerts/active', {muteHttpExceptions: true});
Logger.log(rawData);
}
日志:
{
"correlationId": "085cf198-e7ee-427c-8bb4-9bfd9f91fe9f",
"title": "Unexpected Problem",
"type": "https://api.weather.gov/problems/UnexpectedProblem",
"status": 500,
"detail": "An unexpected problem has occurred.",
"instance": "https://api.weather.gov/requests/085cf198-e7ee-427c-8bb4-9bfd9f91fe9f"
}
如果我从web浏览器转到此URL,或
another service
,工作正常。帮助