我正在努力处理 Outbrain API 服务器未返回的错误。我所做的是使用国家/地区名称向服务器发送 GET 请求,它返回一个包含所需 ID 值的 JSON 响应,但是当我输入国家/地区名称时输入错误,JSON 响应为空,而不是带有错误的 JSON消息(如果我没记错的话)。所以我试图自己处理错误,但它不起作用。这是我的代码(其中 csv[row][2] = United Kinjdom):
r = requests.get('https://api.outbrain.com/amplify/v0.1/locations/search?term=' + csv[row][2] + '&limit=7', headers=headers)
try:
print(r.json())
data = r.json()
error()
except:
print(r.text)
data = r.text
error()
for results in data:
if results['geoType']:
if results['geoType'] == 'Country' and results['name'] == csv[row][2]:
print(results['id'])
countryId = results['id']
else:
logText = time.strftime('%Y-%m-%d %H:%M:%S', time.localtime()) + ": Country name error"
c.execute("INSERT INTO log VALUES (?)", [logText])
conn.commit()
os._exit(1)
第一个打印返回“[]”并且代码似乎没有到达“else”语句,因此我可以将错误添加到日志数据库中。
这是正确拼写国家/地区时的服务器响应:
[{'id': 'c20768bb56a25c22299c38801e935c3a', 'geoType': 'Country', 'name': 'United Kingdom', 'canonicalName': 'United Kingdom', 'code': 'GB'},
{'id': '7477c333ed4e1895b040efe45c30c816', 'geoType': 'Region', 'name': 'Darlington', 'canonicalName': 'Darlington, United Kingdom', 'code': 'D1', 'parent': {'id': 'c20768bb56a25c22299c38801e935c3a', 'geoType': 'Country', 'name': 'United Kingdom', 'canonicalName': 'United Kingdom', 'code': 'GB'}},
{'id': 'd9a9732283ec131e7fa422843449baa4', 'geoType': 'Region', 'name': 'Bath and North East Somerset', 'canonicalName': 'Bath and North East Somerset, United Kingdom', 'code': 'A4', 'parent': {'id': 'c20768bb56a25c22299c38801e935c3a', 'geoType': 'Country', 'name': 'United Kingdom', 'canonicalName': 'United Kingdom', 'code': 'GB'}},
{'id': '92b5f5ef7a5a25e60263e365982be9ad', 'geoType': 'Region', 'name': 'Northumberland', 'canonicalName': 'Northumberland, United Kingdom', 'code': 'J6', 'parent': {'id': 'c20768bb56a25c22299c38801e935c3a', 'geoType': 'Country', 'name': 'United Kingdom', 'canonicalName': 'United Kingdom', 'code': 'GB'}},
慕斯709654
相关分类