Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
3answers
606 views

Download file from premium rapidshare account with .NET

How can I log to premium rapidshare account from my source? I tryed this but it is not working: string authInfo = "name" + ":" + "pass"; authInfo = ...
4
votes
5answers
721 views

Rapidshare premium download (c#)

Is there a way to download a file using a rapidshare premium account with c# or java?
3
votes
2answers
4k views

How to use rapidshare api?

I am trying to use rapidshare apis but dont know exactly how to use it? ...
2
votes
3answers
527 views

Best way to read rapidshare API response?

I've started working with the rapidshare.com API. I'm just wondering what is the best way to read the reply from and API call. To be honest I think the API is all over the place. Some replies are ...
1
vote
1answer
377 views

open source file upload/ distribution server. Like rapidshare

I'm looking for a file upload/ distribution mechanism that can be used in place of attaching files within an email. The issue is: our mail server is is running out of space we need a mechanism to ...
1
vote
1answer
912 views

Download rapidshare file using rapidshare api in php

I am trying to download a rapidshare file using its "download" subroutine as a free user. The following is the code that I use to get response from the subroutine. function rs_download($params) { ...
1
vote
1answer
148 views

Having trouble setting up API call using array of parameters

I am building a class to send API calls to Rapidshare and return the results of said call. Here's how I want the call to be done: $rs = new rs(); $params = array( 'sub' => 'listfiles_v1', ...
1
vote
3answers
517 views

Matching Rapidshare links with regex

I want to match a sequence of Rapidshare links on a webpage. The links look like: http://rapidshare.com/files/326251387/file_name.rar I wrote this code: ...
1
vote
1answer
1k views

Using Rapidshare API to check if a file is downloadable

I'm new with this API thing, so I don't know how to use it very well. I want to make an application on C or PHP or AppleScript to check if a file is downloadable. I just need to know how to send the ...
1
vote
1answer
791 views

How to use rapidshare API to get Account Details ?? PHP question

I get a long string like this : accountid=*** type=prem servertime=1247000294 addtime=****** validuntil=**** username=8 directstart=1 protectfiles=0 ... how to get values from it using php ?? i mean ...
1
vote
2answers
290 views

Rapidshare API question

When I retrieve response from query http://api.rapidshare.com/cgi-bin/rsapi.cgi?sub=getaccountdetails_v1&type=prem&login=MY_USERNAME&password=MY_PASSWORD, among other variables, I get ...
0
votes
1answer
94 views

How to download files from file hosting services like Rapidshare.com, DepositFiles.com

I'm looking to build a downloader application that downloads files from file-hosting services. What are the steps necessary to satisfy this requirement? E.g. user adds the shared file URL and ...
0
votes
1answer
81 views

How to get source of html page from a https adress in java

I am trying to implement a download manager in java for rapidshare, I am using the rapidshare API. The problem is that for example if you go to the following link it redirects to a https page, but ...
0
votes
1answer
105 views

php curl multiple cookies

I want to use "Rapidshare" api for my website, and I have the problem. My problem is that I have multiple rapidshare premium accounts.I have read the information that if i want to use rapidshare api I ...
0
votes
2answers
85 views

Automating interaction with a web-page's JavaScript

Some websites, like rapidshare, give access to their content using JavaScript-based timers. This is impossible to circumvent, for someone like me who doesn't really know how web browsers exactly work. ...
0
votes
0answers
223 views

cURL not following the Location: header

I'm trying to use Rapidshare's API to download a file. To do so, I need to request their download subroutine twice. Once to get the appropriate download server to use, and secondly to request the ...
0
votes
1answer
180 views

C# implementation of RapidShare Perl upload script

Is there any C# implementation of RapidShare Perl upload script? I have tested some articles like this one, but doesn't works for me.
0
votes
1answer
302 views

Managed C++ or C# .NET, Downloading from rapidshare?

I am trying to download a file from rapidshare via C++ .NET but I'm having a bit of trouble. The address used to be "https://ssl.rapidshare.com/cgi-bin/premiumzone.cgi" but that no longer works, ...
0
votes
1answer
89 views

Cannot get element value even though it it exists on page

I am working on a javascript downloader and need to click a button. I can see the button and get it's values with web developer and dom inspector in FF. But when I try to: var freeUserForm = ...
0
votes
1answer
64 views

Overriding JavaFX MediaPlayer class

I haven't tried it yet, but is it possible to extend JavaFX's Media class used in MediaPlayer class, content fetching part, to perform certain operation on file, before playing it in real-time? I ...
0
votes
1answer
311 views

How to download from Rapidshare with API

i write this code for downloading from rapidshare.com but it does not work ,why? //rapidshare.com/files/229854091/Travian-Server-PHP-Script.zip $file_id = '229854091'; $file_name = ...
0
votes
0answers
223 views

Downloading from rapidshare as premium user?

I'm creating a simple download manager in java and I want to be able to download files from rapidshare as a premium user. I checked their API, but that didn't make me any wiser. I found this class in ...
0
votes
1answer
361 views

http C# System.Net.WebClient authorization in rapidshare

I am trying to download a file from rapidshare using System.Net.WebClient in C#. I wanted to implement authorization using the http header field "Authorization: Basic ". I do it with the following ...
0
votes
3answers
150 views

Defining a variable in a class and using it in functions

I am trying to learn PHP classes so I can begin coding more OOP projects. To help me learn I am building a class that uses the Rapidshare API. Here's my class: <?php class RS { public ...
0
votes
1answer
270 views

How can I receive the result of the Rapidshare APIs?

I want to use the RapidShare API in my project,but I don't know how I can call it then receive the result. I use Delphi 2009.