1
設定ファイルにSESSION_SERIALIZER = "django.contrib.sessions.serializers.PickleSerializer"
を設定した場合にのみ動作します。django> = 1.6でセッションの有効期限を指定するにはどうすればよいですか?
...
tz = timezone.utc
expire_time = timezone.datetime.utcfromtimestamp(oa_token_expire_time).replace(tzinfo=tz)
request.session.set_expiry(expire_time)
...
@AlvinChiuに期限切れになります、あなたは試したことがありますか?それは働いたのですか? –