Question

How to set cookies with digitalocean functions?

How to insert Set-Cookie header into function response headers?


Submit an answer


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!

Sign In or Sign Up to Answer

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.

Matt Welke
DigitalOcean Employee
DigitalOcean Employee badge
February 2, 2023

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:

def main():
  return {
    'headers': {
      'Set-Cookie': '<header_value>'
    }
  }

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:

function main() {
  return {
    headers: {
      'Set-Cookie': '<header_value>'
    }
  };
}

Try DigitalOcean for free

Click below to sign up and get $200 of credit to try our products over 60 days!

Sign up