ロンドンの気象データを JSON で取得しようとしていますが、HTTPError: HTTP Error 401: Unauthorized
. API を機能させるにはどうすればよいですか?
import urllib2
url = "http://api.openweathermap.org/data/2.5/forecast/daily?q=London&cnt=10&mode=json&units=metric"
response = urllib2.urlopen(url).read()