在 App Engine 中管理用户数据
我正在为自己和我的朋友编写一些 Google App Egnine + Android 服务。 对于每个用户,此服务将要求其他 Google 服务的 AuthSub 令牌。 cron 将从该服务检索信息并通过手机上的 c2dm 发送。
我需要在某个地方存储用户信息和身份验证子令牌,以便从 cron 中使用它。 如果我理解正确的话,谷歌应用程序引擎已经有用于此目标的库。 您能否告诉我正确的研究方向(手册、示例): - 如何存储 auth 子令牌(我从 gdata api 获取它); - 如何使用谷歌用户ID检索它; - 如何获取cron作业中的所有用户数据;
PS:我是 C++ 开发人员,这是我的第一个网络应用程序,如果这个问题是新手,抱歉。
I'm writing some Google App Egnine + Android service for self and my friends.
For each user this service will ask AuthSub token for another Google services.
And by cron will retrieve information from this services and send it via c2dm on their cell phones.
I need somewhere store user information and auth sub token for use it from cron.
And if I understand correctly google app engine already has libs for this goal.
Could you show me right direction for research (manuals, examples):
- how to store auth sub token (I got it from gdata api);
- how to retrieve it with google user id;
- how to obtain all users data in cron jobs;
PS: I'm c++ developer and it my first web app, sorry if this question is newbie.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为了在 app-engine 中存储信息,您需要使用 数据存储区< /a>.
请参阅此处的示例。您可能需要创建一个具有两个字符串属性(google id 和身份验证令牌)的模型。
In order to store information in app-engine you need to use the Datastore.
See here of an example. You probably need to create a model with two string properties, the google id and the auth token.