3

I am trying to use rapidshare apis but dont know exactly how to use it?

http://api.rapidshare.com/cgi-bin/rsapi.cgi?subroutine=getaccountdetails_v1&type=prem&login=MY_USERNAME&password=MY_PASSWORD

after using this i am getting error "ERROR: Subroutine invalid."

Can anybody tell me what is wrong with my link?

steamer25
  • 9,278
  • 1
  • 33
  • 38
Shishant
  • 9,256
  • 15
  • 58
  • 79

2 Answers2

4

The problem is although the API defines the subroutine as subroutine=getaccountdetails_v1 what it actually requires is sub=getaccountdetails_v1. This applies for all the subroutine calls.

This should work

http://api.rapidshare.com/cgi-bin/rsapi.cgi?sub=getaccountdetails_v1&type=prem&login=MY_USERNAME&password=MY_PASSWORD

click here

Ian Elliott
  • 7,588
  • 5
  • 35
  • 42
0

But I think it should be something like this

https://api.rapidshare.com/cgi-bin/rsapi.cgi?sub=getaccountdetails&type=prem&login=MYUSERNAME&password=MYPASS

Cyrus
  • 401
  • 4
  • 9