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 trialAndreas cormack
Python Web Development Techdegree Graduate 33,011 Pointsset a cookie in flask
I cannot pass this section of the challenge but cant see anything wrong with the code.
resp=make_response()
resp.set_cookie('Treehouse',value='Treehouse')
2 Answers
Kenneth Love
Treehouse Guest TeacherThis is for the quiz question? The cookie name should be 'name'.
Kenneth Love
Treehouse Guest TeacherThe cookie name should be "treehouse"
, lowercase t
. Also, I'm not sure if the value
keyword argument is valid or not. You don't need it, certainly.
Andreas cormack
Python Web Development Techdegree Graduate 33,011 PointsHi Kenneth
I tried "treehouse" and left the second argument blank but it still wont pass??
Andreas cormack
Python Web Development Techdegree Graduate 33,011 PointsAndreas cormack
Python Web Development Techdegree Graduate 33,011 PointsThanks Kenneth should have read the question a bit better.