class FileDropboxDownloadView(LoginRequiredMixin, View):
login_url = global_login_url
def get(self, request, pk):
# return self.head(self)
# use the path to find the filename
db_query_file = self.request.path
# remove the trailing slash
db_query_file = db_query_file[:-1]
# regular expressions to remove the beginning
db_query_file = re.sub('^(/)[\w]+(/)[\w]+', '', db_query_file)
dbx = dropbox.Dropbox(dropbox_token)
return dbx.files_download(db_query_file, rev=None)
Когда я пытаюсь это сделать, он дает мне только метаданные файла, а не сам файл. Есть ли способ заставить его вернуть файл? Спасибо!