【发布时间】:2020-03-16 14:58:48
【问题描述】:
我正在尝试捕获 HTTP 错误。我使用了以下选项: 1) googleapiclient.errors.HttpError 2) google.api_core.exceptions.NotFound
这些选项都不适合我。任何想法为什么?谢谢!
from pprint import pprint
from googleapiclient import discovery, errors
from oauth2client.client import GoogleCredentials
#from google.api_core.exceptions import NotFound
credentials = GoogleCredentials.get_application_default()
service = discovery.build('compute', 'v1', credentials=credentials)
# Project ID for this request.
project = 'aweqwfnwrueifubwerfbiu' # TODO: Update placeholder value.
try:
request = service.firewalls().list(project=project)
except errors.HttpError:
pprint('Error!')
while request is not None:
response = request.execute()
for firewall in response['items']:
# TODO: Change code below to process each `firewall` resource:
pprint(firewall)
request = service.firewalls().list_next(previous_request=request, previous_response=response)
Traceback (most recent call last):
File "test.py", line 20, in <module>
response = request.execute()
File "/lib/python3.6/site-packages/googleapiclient/_helpers.py", line 130, in positional_wrapper
return wrapped(*args, **kwargs)
File "/lib/python3.6/site-packages/googleapiclient/http.py", line 856, in execute
raise HttpError(resp, content, uri=self.uri)
googleapiclient.errors.HttpError: <HttpError 404 when requesting https://compute.googleapis.com/compute/v1/projects/aweqwfnwrueifubwerfbiu/global/firewalls?alt=json returned "The resource 'projects/aweqwfnwrueifubwerfbiu' was not found">
【问题讨论】:
标签: python exception google-cloud-platform google-api-client google-api-python-client