טיפול בשגיאות של בקשות

Maps Datasets API מחזיר הודעות שגיאה כחלק תשובה. לדוגמה, אם משמיטים את אסימון OAuth או אם פג התוקף של האסימון, הבקשה מחזירה:

{
  "error": {
    "code": 401,
    "message": "Request is missing required authentication credential.
    Expected OAuth 2 access token, login cookie or other valid authentication credential.
    See https://developers.google.com/identity/sign-in/web/devconsole-project.",
    "status": "UNAUTHENTICATED",
    "details": [
      {
        "@type": "type.googleapis.com/google.rpc.ErrorInfo",
        "reason": "CREDENTIALS_MISSING",
        "domain": "googleapis.com",
        "metadata": {
          "method": "google.maps.mapsplatformdatasets.v1alpha.MapsPlatformDatasetsV1Alpha.ListDatasets",
          "service": "mapsplatformdatasets.googleapis.com"
        }
      }
    ]
  }
}

אם משמיטים פרמטר נדרש של גוף, כמו displayName כשיוצרים פרמטר של מערך הנתונים, הבקשה מחזירה:

{
  "error": {
    "code": 400,
    "message": "display_name: Display name must be provided",
    "status": "INVALID_ARGUMENT"
  }
}

אם מעבירים מזהה מערך נתונים לא חוקי, הבקשה מחזירה:

{
  "error": {
    "code": 404,
    "message": "Dataset not found",
    "status": "NOT_FOUND"
  }
}

למידע נוסף על שגיאות וטיפול בשגיאות, אפשר לעיין במאמר שגיאות.