1

我正在使用 python 的 requests 库从 noaa 的 co-ops api 中检索潮汐信息,并不断收到错误 403 禁止响应。如果有区别,我在 pythonanywhere 上使用 python 2.7。这是我的代码:

headers={'user-agent':'Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Safari/537.36',
'From':'iancissel@gmail.com'
}
boston_id='8443970'
url='http://tidesandcurrents.noaa.gov/api/datagetter?date=today&station=8443970&product=high_low&datum=STND&units=english&time_zone=lst&format=json'
r=requests.get(url, headers=headers)
print r
4

0 回答 0