7

我是集成投递箱的新手,但我不太确定如何生成调用以获取请求令牌机密。

https://www.dropbox.com/developers/reference/api#request-token

我必须打电话给这个网址https://api.dropbox.com/1/oauth/request_token,最好的方法是什么?用 c#?。

感谢您提供的任何帮助

PS:我只是不确定要为此使用哪些 c# 库。

4

3 回答 3

3

Codeplex 上有一个 .Net Dropbox 库,看起来相当不错:http ://sharpbox.codeplex.com/

于 2012-07-10T19:54:19.103 回答
2

像下面这样的东西应该可以工作:

System.Net.WebClient client = new System.Net.WebClient();
string response = client.DownloadString("https://api.dropbox.com/1/oauth/request_token"); // Add necessary query parameters

// Parse the response
System.Collections.Specialized.NameValueCollection collection = System.Web.HttpUtility.ParseQueryString(response);

我包含了命名空间以阐明每个类的位置,但您可能应该只将using 指令放在文件的顶部。

于 2012-07-10T20:37:54.397 回答
0

System.Net.WebRequest 是您想要的类。具体来说,您需要使用 URL 调用 Create(),然后调用 GetResponse() 来读取结果。

于 2012-07-10T20:07:17.670 回答