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:
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:
Does someone have a clue?
I was able to get headers adding a parameter as mentioned in this doc here in FastAPI to allow
expose_headers=["*"]