The issue that I have is, we have Website in ASP.NET which works as standalone site and is also launched as plugin from third party application. This is due to chrome update related to https://blog.heroku.com/chrome-changes-samesite-cookie
The standalone site works fine however the plugin is completely broken.
What can be done so as to cookies work correctly on standalone as well as on plugin?
The changes done are: In web.config I have added as follows:
This is to let the cross-site cookies work currently when plugin launches the site. But seems like still the plugin does not work and it shows the error:
A cookie associated with a cross-site resource at http://test.com/ was set without the SameSite
attribute. It has been blocked, as Chrome now only delivers cookies with cross-site requests if they are set with SameSite=None
and Secure
.