問題:
設定 HTTPOnly cookie 的 REST API端點是在本地主機中無法正常工作
使用的方法:
解決方案:
問題出在前端 JavaScript 的 fetch() 方法。若要在本機瀏覽器環境中接收 HTTPOnly cookie,您必須在 RequestInit 物件中包含憑證:「include」選項。
let response = await fetch(`http://localhost:8000/login`, { method: "POST", credentials: "include", //--> send/receive cookies body: JSON.stringify({ email, }), headers: { "Content-Type": "application/json", }, });
對於 Axios,您可以透過在第三個設定中設定 withCredentials: true 來啟用 cookie 處理爭論。
以上是為什麼我的 HTTPOnly Cookies 設定沒有在本地主機上?的詳細內容。更多資訊請關注PHP中文網其他相關文章!