Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 rapidshare api,但不知道如何使用它?
http://api.rapidshare.com/cgi-bin/rsapi.cgi?subroutine=getaccountdetails_v1&type=prem&login=MY_USERNAME&password=MY_PASSWORD
使用后我收到错误“错误:子程序无效。”
谁能告诉我我的链接有什么问题?
问题是尽管 API 将子例程定义为 subroutine=getaccountdetails_v1它实际需要的是 sub=getaccountdetails_v1. 这适用于所有子程序调用。
subroutine=getaccountdetails_v1
sub=getaccountdetails_v1
这应该工作
http://api.rapidshare.com/cgi-bin/rsapi.cgi?sub=getaccountdetails_v1&type=prem&login=MY_USERNAME&password=MY_PASSWORD
点击这里
但我认为它应该是这样的
https://api.rapidshare.com/cgi-bin/rsapi.cgi?sub=getaccountdetails&type=prem&login=MYUSERNAME&password=MYPASS