我正在嘗試使用來自客戶端JavaScript應用程序的Google身份驗證的azure功能(nodejs)。我已經爲正確的URL設置了CORS(即http://localhost:8080)。但我仍然得到以下錯誤:如何添加客戶http標頭作爲來自Azure功能的響應
Credentials flag is 'true', but the 'Access-Control-Allow-Credentials' header is ''. It must be 'true' to allow credentials. Origin ' http://localhost:8080 ' is therefore not allowed access.
我已經試過到處在互聯網上,花了幾天時間得到答案嘍。似乎Azure http響應需要在標題中添加此Access-Control-Allow-Credentials:true。有沒有辦法添加自定義標題?
任何幫助將不勝感激。
您正在使用的NodeJS? – Thomas
@Thomas,是服務器端的nodejs和客戶端的JavaScript提取。 –