使用Google Cloud Endpoints的会话[Python]

时间:2014-01-31 18:53:47

标签: python google-app-engine session google-cloud-endpoints

我正在尝试使用云端点来使用会话服务,因此当我的用户刷新页面时,它们不会丢失所有内容。

我以为我已经通过gae-session来了解它:https://github.com/dound/gae-sessions因为它在本地工作。

但由于某些原因,当我上传我的代码时,会话无效。我不确定为什么会这样(SSL也许?)

我像这样回来了

class MyApi(remote.Service):

  def __init__(self):
    # Retrieve session if exists
    self.session = get_current_session()

  @endpoints.method(message, message, path='app_init', http_method='POST', name='app.init')
  def AppInit(self, request):
    if not self.session.is_active():
      logging.info('session active')
    else:
      logging.info('no active session)

对我做错了什么或者更好的解决方案有任何想法?

由于

0 个答案:

没有答案