Cookie not being set on angular client
问题 I have a backend app in django python and it is being served on http://localhost:8000. I have a angular frontend which is being served on http://localhost:4200. I have disabled CORS on django. On hitting the login api on http://localhost:8000/auth/login/, I am getting a valid response along with the Set-Cookie header. Here is my angular code to print the cookies: this.http.post<any>('http://localhost:8000/auth/login/', this.LoginForm, { observe: 'response' }).subscribe(response => { console