You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Tornado Web Server
I've been running the latest version from git (September 5, 2011) and
it looks like the secure cookie function now adds double quotes around
the value, which it did not use to (at least not in 2.0). For example:
When reading the cookies with get_cookie() method it returns a version
without quotes and is fine for use in python code, but can be a
problem if the value of the cookie needs to be read with javascript
and later passed on as a request argument.
Is this a possible bug?
Ben Darnell
unread,
Sep 9, 2011, 2:17:38 AM9/9/11
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to python-...@googlegroups.com
Cookie values may be quoted in the Set-Cookie header, and any cookie library is supposed to interpret the quoted strings correctly. If javascript sees the quotes as a part of the cookie value, that's a bug in the browser as I understand it.