Enter
api.mydomain.com
index.html
portal.mydomain.com
中获取 fetch('https://api.mydomain.com/api/v1/forms/cookie?category=all&count=2', {
method: 'GET',
credentials: 'include',
headers: {
"Access-Control-Allow-Origin": "https://portal.mydomain.com"
}
})
.then(response => response.json())
.then(data => console.log(data))
.catch(err => console.error(err));
const payload = {
"email": "[email protected]",
"password": "password",
"csrf": "csrf"
}
const jsonData = JSON.stringify(payload);
fetch('https://api.mydomain.com/api/v1/forms/auth', {
method: 'POST',
credentials: 'include',
headers: {
"Access-Control-Allow-Origin": "https://portal.mydomain.com",
"Content-Type": "application/json"
},
body: jsonData
})
.then(response => response.json())
.then(data => console.log(data))
.catch(err => console.error(err));
我没有CORS错误,选项,获取和发布请求都得到200响应。 我可以看到JSON数据有效载荷,只是没有cookie,也无法在Broswer Dev工具中看到cookie设置。
在我的html文件中,我有以下内容:
@router.get("/cookie")
def set_cookie(response: Response):
# Set an HttpOnly cookie
response.set_cookie(
key="testCookie",
value="testCookieValue",
httponly=True, # This makes the cookie HttpOnly
secure=True, # Use secure cookies in production
samesite="none" # Adjust based on your needs
)
return {"message": "Cookie has been set2"}
origins = [
"https://portal.mydomain.com",
"https://api.mydomain.com",
]
app.add_middleware(
CORSMiddleware,
allow_origins=origins,
allow_credentials=True,
allow_methods=["*"],
allow_headers=[
"Content-Type",
"Authorization",
"X-Requested-With",
"Access-Control-Request-Method",
"Access-Control-Request-Headers",
"Access-Control-Allow-Origin"],
)
api.mydomain.com
我不确定还要尝试什么。
这与CORS无关。问题是,默认情况下,在任何其他子域中都无法使用
portal.mydomain.com
上设置的cookie。要使所有子域上提供一个cookie,您必须明确将域设置为.mydomain.com
:
@router.get("/cookie")
def set_cookie(response: Response):
# Set an HttpOnly cookie
response.set_cookie(
key="testCookie",
value="testCookieValue",
httponly=True,
secure=True,
samesite="none",
domain=".mydomain.com",
)
return {"message": "Cookie has been set2"}