开发者

Retrieve file from url with autorization PHP

I'm currently trying to grab a file from an external url that has an authorization box that pops up (like the default one asking for开发者_运维百科 a username and password)

How can I have a script get the contents of the page (it's a video), save it to a directory and handle the authorization (i have a username and password)

Thanks :)


file_put_contents('where to put it', file_get_contents('http://username:password@domain.com/video'));


In a word, look at curl: http://php.net/curl, for all you posting/logging in/cookies/session needs in HTTP country.


You don't need to download the page, just check what is being submitted to the web server. Chances are it's just a POST. It may have some additional checks (i.e. checksum) which may need to be scraped from the page.

You can use the HTTP Headers plugin for Firefox to see how the browser is communicating with the server. You then just need to emulate that transaction. It is likely a POST, which is easy to do with CURL.

I don't think file_put_contents will work since it doesn't do an http POST.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜