Unable to get custom headers with Axios in reactJs

426 Views Asked by At

I have an backend application running on fastAPI which I already allow CORS:

@app.get("/getfile/{obj_name}")
async def get_single(obj_name: str):
    res = s3.get_object(Bucket=BUCKET_NAME, Key='medical-appointment/'+obj_name)
    content = res['Body'].read()
    return Response(content=content,
        headers={
            'Content-Disposition': f'attachment;filename={obj_name}',
            'Content-Type': 'application/octet-stream',
            'X-Header-Custom': 'custom',
        })

Also I have my reactJs application running which I'm trying to see the logs but my custom logs are not shown only I can see:

enter image description here

content-length: '111852', content-type:'application/octet-stream'}:

const handleFile = () => {

    axios.get('http://localhost:8000/getfile/<file>')
      .then((response) => {
    const headers = response.headers;
    console.log(headers);
      })
      .catch((error) => {
        console.log(error);
      });
  };

But I also checked on browser developers tools and I can see my custom headers:
enter image description here

Does someone have a clue?

1

There are 1 best solutions below

0
On

I was able to get headers adding a parameter as mentioned in this doc here in FastAPI to allow expose_headers=["*"]