Can anyone help me how to download files from zippyshare.com using bash (server with CentOS)? Their download button made with flash, so i can't retrieve download link.
相关问题
- Is there a limit to how many levels you can nest i
- How to toggle on Order in ReactJS
- void before promise syntax
- Keeping track of variable instances
- Can php detect if javascript is on or not?
It's definitely possible, but it's a little hacky. I've been doing it myself for quite some time using
wget
. The trick is to make the server think that the request is being made from a browser and to make that happen, you need a couple of things:Here's a screenshot explaining where you can get each item:
Now open up your terminal, and use the following command (replacing necessary items):
Example:
Original answer: How to use wget to download from hosting sites?
Note: In the command, it is in fact 'referer' not 'referrer'
Why don't you give a try to PlowShare it can be found here
Example to download
hope this helps. For more help https://code.google.com/p/plowshare/wiki/Readme4
Use Web developer tools from browser (IE/Chrome come with build-in, for Firefox use Firebug). Under network traffic tab look what HTTP request performed to download file.
Next step is to use wget or curl utility.
Reversing step is your task, make something by own...