How to insert Set-Cookie
header into function response headers?
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
You can set headers in the HTTP responses sent using what your function returned by making sure the dictionary returned by your function includes a
headers
key.Example:
Because this example was for Python, a
dict
is returned. But, this concept applies to all languages supported by Functions. You’d use whichever data type is most appropriate.Example for Node.js: