Set Custom Cookie node
Store an additional custom cookie on the client.
This node uses the specified properties to create a cookie with a custom name and value, and optionally, sets attributes such as the cookie path, domain, expiry, and security flags.
You can use this node with the Configuration Provider node to extend custom capabilities.
For instance, create a Config Provider
script to set custom static values or access values from the shared node state.
Include all the attributes in the configuration provider script’s config
map.
The following example sets the attributes of the custom cookie to static values:
config = {
"name": "testname",
"value": "testvalue",
"maxAge": "60",
"domain": "am.example.com",
"path": "/",
"useSecureCookie": false,
"useHttpOnlyCookie": false,
"sameSite": "LAX"
};
Reference the script when you create a Configuration Provider node, and set the Node Type to Set Custom Cookie
:
Properties
Property | Usage |
---|---|
Custom Cookie Name (required) |
Sets the name of the custom cookie. The cookie name can contain any US-ASCII characters except for:
space, tab, control, or a separator character ( |
Custom Cookie Value (required) |
Sets the value of the custom cookie. |
Max Age |
Specifies the length of time the custom cookie remains valid, in seconds. If that time is exceeded, the cookie is no longer valid. Both the If omitted, the cookie expires at the end of the current session. The precise implementation of this is determined by the specific browser. Refer to RFC 6265 for details. |
Custom Cookie Domain |
Sets the domain that the custom cookie will be sent to. |
Custom Cookie Path |
Sets the path of the custom cookie. |
Use Secure Cookie |
When enabled, adds the If the |
Use HTTP Only Cookie |
When enabled, adds the When the |
Custom Cookie SameSite attribute |
Sets the The default value is Learn more in SameSite cookie rules. |