App Store增量EPF数据



我必须每天从itunes Store导入EPF数据,所以我必须编写一个脚本,首先通过feed url验证我,然后允许我通过脚本自动下载文件。

但是,我没有找到任何方法来验证自己通过url:

http://feeds.itunes.apple.com/feeds/

首先我手动下载了它,但现在我想我的脚本每天下载它。我该如何证明自己的身份?或者有其他方法可以做到这一点吗?

我通过curl完成了,现在我在里面了。

$username = "username";
$password = "password";
$url = "http://feeds.itunes.apple.com/feeds/";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_USERPWD, "$username:$password");
curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_ANY);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, Array("Content-Type: text/xml"));
curl_setopt($ch, CURLOPT_UNRESTRICTED_AUTH, 1);
$output = curl_exec($ch);
curl_close($ch);
echo $output;

就是这么简单:)

在python中,您可以使用requests库,例如,它可以很好地完成Auth(并且您可以以更简单的方式编写下载逻辑)。它看起来像这样

username='yourusernamehere'
password='yourpasswordhere'
response = requests.get('https://feeds.itunes.apple.com/feeds/', auth=(username, password), stream=True)

注意,我使用了stream=True机制,因为您将下载可能不适合内存的大文件,您应该像这样使用分块:

 with open(local_filename, 'wb') as f:
    for chunk in response.iter_content(chunk_size=1024):
        if chunk:  # filter out keep-alive new chunks
            f.write(chunk)
            f.flush()

相关内容

  • 没有找到相关文章

最新更新