Interfejs Maps Datasets API zwraca komunikaty o błędach jako część . Jeśli na przykład pominiesz token OAuth w sekcji lub – jeśli token wygasł, żądanie zwróci te wartości:
{ "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" } } ] } }
Jeśli pominiesz wymagany parametr body, np. displayName
, podczas tworzenia
zbiór danych, żądanie zwraca:
{ "error": { "code": 400, "message": "display_name: Display name must be provided", "status": "INVALID_ARGUMENT" } }
Jeśli podasz nieprawidłowy identyfikator zbioru danych, żądanie zwróci:
{ "error": { "code": 404, "message": "Dataset not found", "status": "NOT_FOUND" } }
Więcej informacji na temat błędów i obsługi błędów znajdziesz w artykule Błędy.