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 trialVlad Monea
3,394 PointsHow 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.
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
22,160 PointsKey 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
3,394 PointsThanks 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.