SetCookie component
In Dovetail you can authenticate with almost any web api available, now you can also authenticate using session cookies.
With the SetCookie component you can set cookies in a Cookie Store
that is available throughout the flow, for as long as it is installed. This Cookie Store
will be added to every single HTTP Component called in the flow.
You can remove a cookie from the Cookie Store
by using the RemoveCookie Component.
The SetCookie component can be used to authenticate with web API's using Sessions. You can overwrite a cookie by it's name
and domain
.
Configuration
The SetCookie component has the following configuration options:
Property | Description |
---|---|
Name | The name of the desired cookie. |
Value | The value you wish to set on the cookie. |
Domain | The domain for which the cookie should be valid. (Optional) |
Path | The path for which the cookie should be valid. (Optional) |
Is Secure | Only allow this cookie for encrypted connections (HTTPS). |
Remarks
- All properties can contain
${header.<key>}
and${headers.<key>}
values.