One month down in 2025: How are your resolutions coming along? Check out how to get back on track here.
Forum Discussion
anuj9196
7 years agoNew member | Level 2
How can I embed pdf from dropbox into website
I want help with https://stackoverflow.com/q/51001177/3719167
In short, I am using Dropbox in my Django application to upload pdf files. And want to embed it in the template to display the pdf file.
I'm using django-storage plugin which generates url as
Can I download file usind
files_download_to_file
method using above url?
- Greg-DB
Dropbox Staff
Your StackOverflow link is returning "Page Not Found". Do you still need help with this?
For reference, that '.../apitl/..' link that you generated is a temporary link that points directly to the file content. That lasts for four hours after it's created. If you have that, during those four hours you can download the file content directly using an HTTPS GET request.
The files_download_to_file method you mentioned is a method in the Dropbox API v2 Python SDK for downloading file content directly from Dropbox to a local file. You don't need a temporary link to use it. You just supply the remote path in Dropbox for the file you want, as well as the local path where you want to save it. (Alternatively, you can use files_download to download the file data to memory instead of the local filesystem.)
None of these are really specifically meant for embedding the data on your web page, but once you have the data, you can do whatever you need with it.
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.5,950 PostsLatest Activity: 4 hours ago
If you need more help you can view your support options (expected response time for an email or ticket is 24 hours), or contact us on X or Facebook.
For more info on available support options for your Dropbox plan, see this article.
If you found the answer to your question in this Community thread, please 'like' the post to say thanks and to let us know it was useful!