使用 .NET 从 API 获取结果
我想在我的 .NET 应用程序中使用 Rapidshare API,但我对如何发送请求并返回结果感到困惑。你使用Winsock还是其他方法?
谢谢。
I wanted to use the Rapidshare API in my .NET app, but I am confused on how you send the request and bring back the result. Do you use Winsock or another method?
URLs are like this:
http://api.rapidshare.com/cgi-bin/rsapi.cgi?sub=checkfiles_v1&files=288725357&filenames=my_upload.txt
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看 System.Net 命名空间,特别是 System.Net.WebClient。
http://msdn.microsoft.com /en-us/library/system.net.webclient(VS.80).aspx
Check out the System.Net namespace, specifically System.Net.WebClient.
http://msdn.microsoft.com/en-us/library/system.net.webclient(VS.80).aspx
使用 WebClient 类。
http://msdn.microsoft。 com/en-us/library/system.net.webclient%28VS.80%29.aspx
您可以使用此类以编程方式与网页交互。以下是登录网站的一些示例代码。您可以对其进行调整以与他们的 Web API 进行交互:
此特定代码登录 Jaxtr(一种 SMS 消息传递服务)并发送 SMS 消息。
Use the WebClient Class.
http://msdn.microsoft.com/en-us/library/system.net.webclient%28VS.80%29.aspx
You can use this class to programatically interact with webpage. Here's some example code to log into a website. You can adapt this to interact with their web API:
This particular code logs into Jaxtr, a SMS messaging service, and sends an SMS message.