400 invalidParameter
请务必阅读 Google AnalyticsAPI 服务器返回的错误响应。在很多情况下,他们可以准确地告诉你什么是错的。
400 invalidParameter
{
"error": {
"errors": [
{
"domain": "global",
"reason": "invalidParameter",
"message": "Invalid value '-1' for max-results. Value must be within the range: [1, 1000]",
"locationType": "parameter",
"location": "max-results"
}
],
"code": 400,
"message": "Invalid value '-1' for max-results. Value must be within the range: [1, 1000]"
}
}
在这种情况下的消息:
message
:“无效值’-1’表示最大结果。值必须在以下范围内:[1,1000]”,
告诉我们,我们为参数 max-results 发送了一个 -1 值,该值无效,我们只能发送 1-1000 的值。