how SameSite attribute added to my Asp.net_SessionID cookie automatically?

前端 未结 7 1573
迷失自我
迷失自我 2020-11-30 06:47

Recently samesite=lax add automatically to my session cookie! this attribute just add to sessionID: \"Set-Cookie ASP.NET_SessionId=zana3mklplqwewhwvika2125; path=/; H

7条回答
  •  忘掉有多难
    2020-11-30 07:13

    @zemien your solution correctly solved our google chrome issues

    We have an integration where our application is embedded in an iframe on a third party. Chrome version 80 released Feb 4 2020 prevented cookies from loading.

    However I had to modify the pattern to capture all cookies, add the Secure flag, and condition to not apply the rewrite on localhost for our local non https environment

    
          
          
            
          
          
    
    

提交回复
热议问题