PDF from external link is not working
See original GitHub issueBug Report or Feature Request (mark with an x
)
- [ ] Regression (a behavior that used to work and stopped working in a new release)
- [x] Bug report -> please search issues before submitting
- [ ] Feature request
- [ ] Documentation issue or request
PDF is not loaded when PDF src url is other than - https://vadimdez.github.io/ng2-pdf-viewer/assets/pdf-test.pdf Any external url link with http or https won’t work.
Issue Analytics
- State:
- Created 3 years ago
- Reactions:2
- Comments:8 (1 by maintainers)
Top Results From Across the Web
Why are Hyperlinks not Working in PDF? Fix it!
Do you want to know why the hyperlinks did not work in PDF? This article explains the reasons and also provides you with...
Read more >Troubleshoot viewing PDF files on the web - Adobe Support
Follow these steps to solve the common issues around viewing PDF files from a website.
Read more >PDF Links Not Working? Here's How To Fix It - TechNewsToday
How to Fix PDF Links Not Working? · Insert the Correct URL · Enable the Anchor Links · Set Default PDF Viewer ·...
Read more >4 ways to hyperlink a PDF - External links - Flipsnack Blog
No problem. Upload the PDF in Flipsnack, go to the Customize tab, and check the Auto-detect links feature that you can find in...
Read more >Externally Shared PDFs Don't Fully Load with Link
I have a PDF report in a SharePoint Online document library, ... file to which the link links and click the Name, they...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
It will work if you provide an external PDF link! See if you get CORS error from the source of the file.
for someone still struggling with this issue even after enable CORS origin in your server, my lead dev suggested to add origin parameter in url with value localhost like below
var url = "https://xxxx.xxx.xxxxx"; url = url + '?origin=localhost';
refer here: https://stackoverflow.com/a/64693106