我必须每天从itunes Store导入EPF数据,所以我必须编写一个脚本,首先通过feed url对我进行身份验证,然后允许我通过脚本自动下载文件。
但是,我没有找到任何通过网址验证自己的方法:
http://feeds.itunes.apple.com/feeds/
首先我手动下载它,但现在我希望我的脚本每天下载它。我怎么能为此验证自己?或者还有其他方法可以达到这个目的吗?
任何想法或观点都将受到高度赞赏。
答案 0 :(得分:1)
我是通过卷曲做到的,现在我在里面。
$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;
这很简单:)
答案 1 :(得分:0)
在python中,您可以使用requests
library,这样可以很好地执行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()