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

119
Views
Not able to capture API response in chrome extension V3

I've developed a chrome extension. I am not able to capture the API response but I can see the response in the network console.

Below is my code

async function generateUniqueId(){
   let uniqueId = Date.now();
   let formData = new FormData();
   formData.append("userId",uniqueId);
   fetch('http://localhost:3000/v1/registerUser',{
    method:'POST',
    body:formData
     }).then((response)=>{
          console.log(response);
          chrome.storage.local.set({'userId': uniqueId}, function() {
            console.log('Value is set to ' + Date.now());
          });                      
      }).catch((error)=>{console.log(error)});
}

In the below image you can see the response in the Network tab but when I print it in the console it's showing empty. Can someone please help?

enter image description here

about 4 years ago · Juan Pablo Isaza
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!