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?..
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
Thanks!
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; }