将App Engine Standard与python
3.7结合使用时,没有google.xxx库可用。您必须构建自己的数据库或使用标准的Python库。这同样适用于:
auth,
users,
images,
search,
taskqueue,
memcache,
urlfetch,
deferred,等等,甚至在
ndb数据存储接口。
对于数据存储,您使用
google-cloud-datastore或第三方。
对于其他人,则使用标准的Python库,例如:
google.auth=>
rauth,
google.appengine.api.memcache
=>
python-memcached
在此处了解更多信息:https : //cloud.google.com/appengine/docs/standard/python3/python-
differences
该页面建议使用Google Identity Platform或Firebase身份验证进行授权。



