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

106
Views
Store response.data in a global variable

I'm trying to store response.data into a variable that can then be used outside of it's scope however it seems to always come back as undefined.

As you can see in the code, the first axios calls returns a token and then I later want to be able to use this token within the headers of the POST call.

const server = () => {
  var token;

  axios.get('http://xxxxx').then(
    response => {
      token = response.data;
    }
  );

  var configuration = {
    configToken: token
  };

  async function login() {
    return fetch('https://xxxx', {
      method: 'POST',
      headers: {
        Authorization: `Bearer ${configuration.configToken}`,
      },
    })
  }

  login();
};

export default server;
about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

axios request you send depending on the server path. check if your server is https or http

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