From ce78cae0510f03c36c15d198087ed31f56406518 Mon Sep 17 00:00:00 2001 From: Frank Robert <47538444+frankrobert-ls@users.noreply.github.com> Date: Tue, 5 Jan 2021 10:10:08 -0500 Subject: [PATCH] Update 05-Response.adoc - Add details on base64 encoding for cookies --- 04-Basics/05-Response.adoc | 1 + 1 file changed, 1 insertion(+) diff --git a/04-Basics/05-Response.adoc b/04-Basics/05-Response.adoc index 9309e29d..a711c162 100644 --- a/04-Basics/05-Response.adoc +++ b/04-Basics/05-Response.adoc @@ -172,6 +172,7 @@ In that case, may want to set a plain cookie instead: // not signed or encrypted response.plainCookie('cartTotal', 20) ---- +> Do note, the value is still JSON.stringified and converted to base64 encoded string to avoid encoding issues. == Redirects Use one of the following methods to redirect requests to a different URL.