My Django app needs to read a cookie that is written by a JavaScript script in another part of my website. The JavaScript code that generates the cookie is something like this:
document.cookie='ShoppingCart=[7008|2][7120|3]; path=/; domain=mydomain.com'; I can see the cookie and its content from Firefox and Safari when I "view cookies". Django's request.COOKIES dictionary contains a key for the 'ShoppingCart' cookie, but the content is always an empty string. If I change the content of the cookie to something else, Django can see it! document.cookie='ShoppingCart=ssdf; path=/; domain=mydomain.com'; Is this a feature or a bug? I can certainly use different delimiters in my cookie if there's something weird about brackets or pipe symbols. Other webapps (JavaScript and Java Struts) read this cookie with no problems. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---