Hi all,
I have this app which was built in Javascript (Meteor). Basically, the user saves some Word documents in Dropbox, using the DB web interfase. Then, users use the app to pass some data to build documents. The app needs to:
1) connect to DropBox to get the list of Word files in a folder
2) read the document (from DropBox) that the user selects to build the document from there
So the problem is: the app can't connect to DB to get the list of files in a folder, apparently, because the server (Windows) is in a network which is behind a proxy. This is the error message the app receives:
FetchError: request to https://api.dropboxapi.com/2/files/list_folder failed, reason: connect ETIMEDOUT 162.125.5.19:443
A similar situation ocurred when I had to install the app from GitHub. Clonning the app from GitHub didn't work until I saved the proxy settings in the config file. Then, the app was installed from GitHub pretty fine. Then config settings to establish proxy info for git to work are:
[http]
proxy = http://siste02:<pwd here>@192.168.0.111:3128
[https]
proxy = http://siste02:<pwd here>.@192.168.0.111:3128
So, my question is: what do I need to do so that my app connects succesfully to DropBox in a case like this?
Note that this app connects to DropBox perfectly fine in many others installations, which are similar like this one but with *no* proxy installed in the network.
Many thanks and bye ...