Hi All,
The feature I am trying to implement is once customer updates a file, We will download the file and extract some data from it.
We implement Dropbox webhook - https://www.dropbox.com/developers/reference/webhooks.
(using Phyton).
We are getting to
f, metadat = client.get_file_and_metadata(path)
We are trying to save the file to our firebase database (as our code runs on Node).
storageFile = storage.put(f)
and getting
ValueError: total bytes could not be determined. Please pass an explicit size.
Any Advice?
Thanks,
Ran.