Need to see if your shared folder is taking up space on your dropbox 👨💻? Find out how to check here.
Forum Discussion
osherbd
7 years agoNew member | Level 2
C# Dropbox.api nuget - Upload via proxy
Hi,
I am using Dropbox.api nuget in C#.
I would like to know if there is an option to set a proxy that the files will be uploud using it?..
- 7 years ago
I don't believe we have any specific sample code for this, but you can construct a DropboxClient with a custom HttpClient which can include proxy settings:
https://dropbox.github.io/dropbox-sdk-dotnet/html/M_Dropbox_Api_DropboxClient__ctor_1.htm
https://dropbox.github.io/dropbox-sdk-dotnet/html/T_Dropbox_Api_DropboxClientConfig.htm
Greg-DB
Dropbox Community Moderator
7 years agoI don't believe we have any specific sample code for this, but you can construct a DropboxClient with a custom HttpClient which can include proxy settings:
https://dropbox.github.io/dropbox-sdk-dotnet/html/M_Dropbox_Api_DropboxClient__ctor_1.htm
https://dropbox.github.io/dropbox-sdk-dotnet/html/T_Dropbox_Api_DropboxClientConfig.htm
osherbd
7 years agoNew member | Level 2
Thanks!
- benktesh7 years agoExplorer | Level 4
I have begun to work with Dropbox api and I encountered this issue.
Here is my solution.
private static DbxClientV2 getClient(String token, String host) { Proxy proxy = getProxy(); Config config = Config.builder().withProxy(proxy).build(); StandardHttpRequestor requester = new StandardHttpRequestor(config); DbxRequestConfig requestConfig = DbxRequestConfig.newBuilder("example").withHttpRequestor(requester).build(); DbxClientV2 dbxClient = new DbxClientV2(requestConfig, token, host); return dbxClient; }
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
The Dropbox Community team is active from Monday to Friday. We try to respond to you as soon as we can, usually within 2 hours.
If you need more help you can view your support options (expected response time for an email or ticket is 24 hours), or contact us on X, Facebook or Instagram.
For more info on available support options for your Dropbox plan, see this article.
If you found the answer to your question in this Community thread, please 'like' the post to say thanks and to let us know it was useful!