Download from Rapidshare premium (C #)

Is there a way to upload a file using a premium rapidshare account with C # or java?

+4
source share
5 answers

RapidShare has an API that you might want to learn.

+7
source

C # (WebClient) has web helpers that let you upload content. See an example here . Now it’s more difficult, maybe you want to find out if Rapidshare has an API with which you can program, otherwise you need to authenticate via the web client, get the URLs of the images and upload the images.

+2
source

Yes. The cryptload project (in .net) and jdownloader (in java) does this ...

+1
source

sure. You can do this in any language that sends or receives HTTP using cookies. Is there an easy way? Probably no. You might even need a JS interpreter.

+1
source

Do not reinvent the wheel twice! Someone has already created a good class that you can use to download your stuff from rapidshare:

see here: http://sqnco.com/2009/07/simple-rapidshare-download-class-c/

I just tested it and it works 100%! There are still some recommendations on how to show the progress of tasks, but the loading class itself is very well implemented and extremely easy to use!

+1
source

All Articles