cfuj

Results 1 comments of cfuj

My temporary solution is this in the server ``` res.header('Access-Control-Allow-Methods', 'POST, GET, OPTIONS'); res.header('Access-Control-Allow-Headers', 'Content-Type, Authorization'); res.header('Access-Control-Allow-Credentials', 'true'); console.log(req.method, req.session.id) if (req.method == "GET" || req.method == "POST") { return...