我正在尝试捕获HTTP错误。我使用了以下选项:1)googleapiclient.errors.HttpError2)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">
尝试此操作以处理错误
from googleapiclient.errors import HttpError
但是,错误似乎并没有引起异常捕获的位置。在这里
while request is not None:
response = request.execute()
不在这里
try:
request = service.firewalls().list(project=project)
except errors.HttpError:
pprint('Error!')
因此,尝试将其更改为此
while request is not None:
try:
response = request.execute()
except errors.HttpError:
pprint('Error!')