Something like the following should work:
System.Net.WebClient client = new System.Net.WebClient(); string response = client.DownloadString("https://api.dropbox.com/1/oauth/request_token");
I have included namespaces to clarify the location of each class, but you should probably just use directives at the top of your file.
Alex schimp
source share