Optimizely platform cookies
Describes cookies and how they are used by the different products and features in the Optimizely platform.
A cookie is a small piece of data sent from a website and stored by the web browser on a visitor's computer while browsing a website. The main purpose of a cookie is for websites to remember stateful information or to record a visitor's browsing activity.
Cookies are usually small text files stored locally in the browser directory or program data subfolders. The website stores a corresponding file (with the same ID tag).
Cookies and OptimizelyÂ
Select the following sections to see how users use cookies in parts of the Optimizely platform.
- DXP cloud servicesÂ
- Optimizely Content Management System (CMS)Â
- A/B testingÂ
- FormsÂ
- Optimizely Content RecommendationsÂ
- Optimizely Tracking
- Marketing Automation connectors
sameSite cookies attributesÂ
With version 80, Google Chrome implemented the changes the IETF has proposed for the sameSite
cookie attribute. These are:
- The default cookie setting without a
sameSite
attribute changes fromsameSite = None
tosameSite = Lax
. - When using
sameSite = None
, you must also specify Secure. Otherwise, the cookie is rejected. Secure requires communication over HTTPS.
To comply with these changes, Microsoft ASP.NET emits a SameSite
cookie header when HttpCookie.SameSite
value is None
. FormsAuth
and SessionState
cookies are also issued with SameSite = Lax
instead of the previous default value None
as part of this change.
See Work with SameSite cookies in ASP.NET for documentation on the changes in ASP.NET.
Known issues - PDF preview for secured PDF
A bug in Chrome affects large PDFs with restricted access when SameSite = Lax
for forms authentication.
Troubleshoot cookies
The policy should work for most websites and cookies. Websites that cannot comply with the requirements of Lax
have to change the default values. An example of a limitation with Lax
is that you cannot iframe the site under another domain and still use cookie-based features such as authentication and session state.
Note
Older browsers might not support
sameSite
or implement a different behavior onsameSite
.
Configure SameSite for anti-forgery
Configuring the built-in anti-forgery used in Optimizely user interface (requires EPiServer.CMS.Core
11.15):
context.Services.Configure<AspNetAntiForgeryOptions>(options => {
options.CookieSameSiteType = SameSiteType.None;
options.CookieRequireSSL = true;
});
Configure sameSite for forms authentication
Configuring forms authentication to using None
and HTTPS:
<authentication>
<forms cookieSameSite="None" requireSSL="true" />
</authentication>
Configure sameSite for session state
Configuring session state to using None
:
<sessionState cookieSameSite="None" cookieless="false" timeout="360">
</sessionState>
Configure sameSite default values for cookies
Configuring the default for cookies that do not explicitly use sameSite
:
<httpCookies sameSite="None" requireSSL="true" />
Revert behavior of sending sameSite = None to browsers
Revert to the previous behavior of not sending sameSite = None
to browsers:
<appSettings>
<add key="aspnet:SuppressSameSiteNone" value="true" />
</appSettings>
References
Updated 6 months ago