Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

254
Views
React: How to open PDF in new Tab from Cloud storage without downloading in local pc

I am trying to open pdf from the cloud in a new tab, without downloading it to the local machine.

I tried this way but not working for me. In the new tab, it is giving an error.enter image description here

function readFileInNewTab (fileId) {
    let url = BASE_URL + "api/CMS/Documents/Download/" + fileId;
    const requestOptions = {
        method: 'GET',
        headers: { 'Content-Type': 'application/pdf', ...authHeader(url) },
        credentials: 'include',
        responseType: "blob", // important
    };
    inProgress = true;
    return fetch (url, requestOptions).then(handleResponse)
        .then((response)=> {
            const file = new Blob([response], { type: "application/pdf" });
            //Build a URL from the file
            const fileURL = URL.createObjectURL(file);
            //Open the URL on new Window
            const pdfWindow = window.open();
            pdfWindow.location.href = fileURL;   
        })
        .catch((error) => {
            console.log(error);
        });
} 
about 4 years ago · Santiago Gelvez
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!