我该如何解决我的appspot备份失败?

时间:2011-10-01 12:26:16

标签: python google-app-engine

我正在尝试进行备份但不会:

2011-10-01 09:22:43.706 /remote_api 302 5ms 0cpu_ms 0kb

213.89.134.0 - - [01/Oct/2011:05:22:43 -0700] "GET /remote_api HTTP/1.1" 302 0 - - "montaoproject.appspot.com" ms=6 cpu_ms=0 api_cpu_ms=0 cpm_usd=0.000032

$ python ./appcfg.py download_data --application=montaoproject --url=http://montaoproject.appspot.com/remote_api --filename=montao.data
Downloading data records.
[INFO    ] Logging to bulkloader-log-20111001.122234
[INFO    ] Throttling transfers:
[INFO    ] Bandwidth: 250000 bytes/second
[INFO    ] HTTP connections: 8/second
[INFO    ] Entities inserted/fetched/modified: 20/second
[INFO    ] Batch Size: 10
[INFO    ] Opening database: bulkloader-progress-20111001.122234.sql3
[INFO    ] Opening database: bulkloader-results-20111001.122234.sql3
[INFO    ] Connecting to montaoproject.appspot.com/remote_api
Please enter login credentials for montaoproject.appspot.com
Email: niklasro
Password for niklasro: 
[INFO    ] Authentication Failed

的app.yaml:

- url: /remote_api
  script: remote_api.py

remote_api.py:

from google.appengine.ext.remote_api import handler
from google.appengine.ext import webapp
from google.appengine.ext.webapp.util import run_wsgi_app

import re


MY_SECRET_KEY = 'thetopsecret'


cookie_re = re.compile('^"([^:]+):.*"$')


class ApiCallHandler(handler.ApiCallHandler):
    def CheckIsAdmin(self):
        login_cookie = self.request.cookies.get('dev_appserver_login', '')
        match = cookie_re.search(login_cookie)
        if (match and match.group(1) == MY_SECRET_KEY
            and 'X-appcfg-api-version' in self.request.headers):
            return True
        else:
            self.redirect('/_ah/login')
            return False


application = webapp.WSGIApplication([('.*', ApiCallHandler)])


def main():
    run_wsgi_app(application)


if __name__ == '__main__':
    main()

更新 服务器状态为302,未达到remote_api.py中的方法:

2011-11-08 09:02:40.214 /remote_api?rtok=935015419683 302 12ms 0kb

213.89.134.0 - - [08/Nov/2011:03:02:40 -0800] "GET /remote_api?rtok=935015419683 HTTP/1.1" 302 0 - - "montaoproject.appspot.com" ms=13 cpu_ms=0 api_cpu_ms=0 cpm_usd=0.000026

5 个答案:

答案 0 :(得分:2)

当使用这种方法使远程API与开放ID(来自http://blog.notdot.net/2010/06/Using-remote-api-with-OpenID-authentication)一起工作时,我认为你需要在提示时指定密钥(即'thetopsecret')作为电子邮件(然后点击提示输入密码时输入。)

答案 1 :(得分:1)

使用正确的凭据。 niklasro不是您的电子邮件地址。

答案 2 :(得分:1)

如果你的应用程序正在使用高复制数据存储区,那么你的App-ID将是'montaoproject'(并且可能需要在命令行中引用它?这样做肯定不会有害...... )。

答案 3 :(得分:1)

[INFO ] Authentication Failed

与GAE核心无关,身份验证失败=>您的登录请求失败或您没有提供正确的凭据。

你在代理背后工作? https是squid代理的麻烦。

答案 4 :(得分:0)

MY_SECRET_KEY对应您的登录信息,而不是您的密码。您不需要实际输入密码(只需点击返回)。因此,当您验证使用时:

Email: thetopsecret
Password for thetopsecret: (nothing)