cookies parameters

0
Hello! could anyone help me on what are the parameters than need to be set for cookies in mendix 
asked
1 answers
0

There are a lot of settings that can get modified by cookies. One example is the cookie-setting for allowing nonSameSite-iframes: https://docs.mendix.com/developerportal/deploy/environments-details#iframe

document.cookie = "originURI=/login.html" + (window.location.protocol === "https:" ? ";SameSite=None;Secure" : "")

The name and values of the properties that you set in the cookies get defined by the application that uses them. That is the reason why you will not find one single page listing all possible properties and their possible values.

Maybe this app will be helpful to you: https://appstore.home.mendix.com/link/app/52055/

answered