Hi,
I am using the latest dropbox-sdk-python. Here is my python code:
import os
import dropbox
from dropbox.paper import ExportFormat
dbx = dropbox.Dropbox(os.getenv('DROPBOX_ACCESS_TOKEN'))
dbx.paper_docs_download_to_file('temp.md', '12345678', ExportFormat.markdown)
# The file only contains the title of the paper.
res2 = dbx.paper_docs_download('12345678', ExportFormat.markdown)
# I don't know how extract content from res2
The downloaded file only contains the title of the paper.
Thanks