I'm using Beaker Session on Google App Engine to manage persistent data between HTTP requests.
Is it possible to access same session from GET and POST request?
I tried to get access to session object but they are not the same object:
def get(self):
session = self.request.environ['test.beaker.session']
...
def post(self):
session = self.request.environ['test.beaker.session']
...