我编写了一个使用gae-remote-api的应用程序,其中包含以下设置:
handlers:
- url: /my_remote.*
script: google.appengine.ext.remote_api.handler.application
def auth_func(): 返回'my@gmail.com','my-password'
remote_api_stub.ConfigureRemoteDatastore(无,'/ my_remote',auth_func,'myapp.appspot.com')
这个应用程序我给了世界上的几个人。问题是,谷歌有时会拒绝remote_api_stup,因为Google承担了黑客攻击。有时候我必须输入一个新密码。
我在app.yaml中省略了“login:admin”语句而没有效果。
我该如何解决这个问题。