We are aware of the issue with the badge emails resending to everyone, we apologise for the inconvenience - learn more here.
Forum Discussion
osherbd
6 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?..
- 6 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
6 years agoDropbox Staff
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
- osherbd6 years agoNew member | Level 2
Thanks!
- benktesh6 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.
5,877 PostsLatest Activity: 5 hours agoIf 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 or Facebook.
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!