Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

257
Vistas
Nextjs SSR fetch origin

Using the Nextjs getServerSideProps function I make a fetch request to my API. My API checks origin headers for CORS but gets the origin header as undefined. Why is this happening and is there a way around this?

I get origin headers while making fetch requests normally from the browser in Next. This issue only occurs when the request is made to the API via the server from Nextjs getServerSideProps.

about 4 years ago · Juan Pablo Isaza
1 Respuestas
Responde la pregunta

0

What I did was adding the Origin parameter to the header object in the fetch request and adding the url from the .env file to easily change it for production.

  //Create fetch's options
  const options = {
     mode: 'cors',
     method: 'GET',
     credentials: 'include',
     headers: {
        'Content-Type': 'application/json',
        Origin: `${process.env.NEXT_PUBLIC_FRONT_URL}`,
     },
  };

  //Fetch data from the API
  const res = await fetch('changeForYouURL', options);
about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda