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 Cookies

set 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
STAFF
Kenneth Love
Treehouse Guest Teacher

This is for the quiz question? The cookie name should be 'name'.

Thanks Kenneth should have read the question a bit better.

Kenneth Love
STAFF
Kenneth Love
Treehouse Guest Teacher

The 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.

Hi Kenneth

I tried "treehouse" and left the second argument blank but it still wont pass??