使用Google Appengine设置“过期”Cookie

时间:2013-11-16 13:35:31

标签: python google-app-engine cookies session-cookies setcookie

我正在使用Google Appengine和Python学习Udacity的Web开发课程。

我想将Cookie设置为过期,例如,自设置之日起29天。我如何实现这一目标?

我假设它是这样的:

def set_cookie(expire):
    self.response.headers.add_header(
        'Set-Cookie', 
        'Expires=%s; Path=/' % (expire_date))

“过期”价值的格式是什么?如何将其到期时间设置为+ 29天(或分钟,小时,周,月等)?

1 个答案:

答案 0 :(得分:3)

您无需手动添加Set-Cookie标题,而是可以执行以下操作:

import datetime

def yourFunction(...):
    expireTime = datetime.datetime.now()  #Check the docs, about adding 29 days, etc.
    self.response.set_cookie('name', 'value', expires=expireTime, path='/', domain='example.com')