Maps Datasets API は、 レスポンスが返されます。たとえば、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" } }
無効なデータセット ID を渡した場合、リクエストは次のように返します。
{ "error": { "code": 404, "message": "Dataset not found", "status": "NOT_FOUND" } }
エラーとエラー処理について詳しくは、このモジュールの エラー。