今天我开始使用iTunes
中的RSS Feed API
python
并遇到一些错误:当我尝试使用XML打开排名时(例如https://itunes.apple.com/de/rss/toppaidapplications/limit=200/xml
),它给了我正确的结果反应 - 我想要的结果。
当我尝试使用JSON(例如'https://itunes.apple.com/de/rss/toppaidapplications/limit=200/json'
)时,我得到了“HTTP错误403:禁止”#39;我知道它有时在过去有效(我也在iOS App [Obj-C]中使用了这个JSON提要)。
我正在使用此代码:
urlStr = 'https://itunes.apple.com/de/rss/toppaidapplications/limit=200/json'
fileHandle = urllib.request.urlopen(urlStr)
这是我的错还是iTunes JSON Feed很糟糕? RESP。有没有办法解决这个问题或从其他地方获取JSON格式的AppStore图表?