Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python Flask Basics Character Builder Set a Cookie

Vlad Monea
Vlad Monea
3,394 Points

How can i set a cookie with the key 'treehouse'? I am trying response.set_cookie('treehouse', 'random_value')

I was under the impression that the arguments for set_cookie where name and values.

flask_app.py
from flask import Flask, make_response

app = Flask(__name__)


@app.route('/save')
def save():
    response = make_reponse()
    response.set_cookie('vlad', 'treehouse')
    return response

2 Answers

Nathan Tallack
Nathan Tallack
22,159 Points

Key and value pair. ;)

@app.route('/save')
def save():
    response = make_response()
    response.set_cookie('treehouse', 'vlad')  # You got these the wrong way around.  ;)
    return response
Vlad Monea
Vlad Monea
3,394 Points

Thanks for your answer! The thing is, I think this was an error since, at first, i used the correct order. I just got really frustrated since i kinda knew i was correct so i started changing order :) Sorry for the bad snippet.