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 的值。