通过 Android(2.0 之前)访问 Google 帐户 ID/用户名
如何在代码(2.0 之前)中访问用户的 Google 帐户 ID/用户名?我正在构建一个应用程序,它将调用 Web 服务来存储数据,并且我想识别提交数据的人的身份。
如果 2.0 之前没有可用的用户身份信息,那么访问电话身份的能力如何(同样是 2.0 之前)?
How do you access the user's Google Account ID/username in code (pre-2.0)? I am building an application that will call a web service to store data and I want to identify the identity of the person submitting the data.
If no user identity information is available pre-2.0, how about the ability to access phone identity (again, pre-2.0)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我也想知道同样的事情。但我唯一能想到的是:使用网络服务创建一个唯一的ID。将其传递回您的应用程序并将其存储在小型 SQLlite 数据库中。因此,每次应用程序启动时,它都会使用该 ID 来与您的 Web 服务相对应。
不会为您提供有关手机本身的太多信息,但至少您可以将 Web 服务的使用与某些内容相关联。
I was wondering the same thing. But the only thing that I can think of is: Use the web service to create a unique ID. Pass that back to your app and store it in a small SQLlite db. So every time your application starts, it uses that ID to correspond with your Web Service.
Does not give you much information about the phone itself, but atleast you can associate the Web Service usage with something.