mscb402 commented on issue #8955: URL: https://github.com/apache/apisix/issues/8955#issuecomment-1447665063
I think you may need to add `withCredentials` to your front-end request. https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest/withCredentials If you are using axios for send request, you can try ``` const myrequests = axios.create({ withCredentials: true, ... }) ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
