If your website is reachable though HTTP, you should be aware of the httpsOnly flag when initializing the Configuration script.
This is ONLY relevant if your website is either
- Only reachable through HTTP, or
- Reachable through both HTTP and HTTPS
In both of the above two cases you will need to set the httpsOnly flag to false, in order for Cookie Saver to use cookies without the secure flag.
Example:
acq("init", {
"endpoint": "fpc.companyabc.com",
"httpsOnly": false
});
Disclaimer: if your website is reachable only through HTTPS (e.g. HTTP requests are redirected to HTTPS), you should ignore this and not set this flag (as it will default to True).
Comments
0 comments
Please sign in to leave a comment.