3

我正在使用 Android 应用程序。应用程序中的用户身份验证具有三种方式。首先是使用查询完成的简单身份验证。其次是 Facebook。它也完成了。

我正在研究 Google plus 身份验证。但我无法找到 facebook 应用程序中提供的正确文档。

任何人都可以指导我进行 google plus 身份验证吗?

4

2 回答 2

3

您可能想查看Android SDK(于 09/26 发布)中的“ Google Play Services ” 。

Google Play 服务是由 Google Play 商店提供的平台,可将 Google 产品(例如 Google+)集成到 Android 应用程序中。Google Play 服务框架由在设备上运行的服务组件和与应用程序一起打包的瘦客户端库组成。

以下组件包含在 Google Play 服务 v1 中,相应的客户端 API 包含在客户端库中:

  • OAuth 2.0 身份验证
  • Google+ 登录
  • 谷歌 +1 按钮

这是 Google 开发者网站上的链接: https ://developers.google.com/android/google-play-services/index

于 2012-08-30T12:20:44.947 回答
0

要添加 chrkad 的建议,还有 Google+ 移动 API: https ://developers.google.com/+/mobile/

对于 Android,特别是: https ://developers.google.com/+/mobile/android/

这些服务将使您能够获得给定帐户的 plus.me 范围,然后您可以将其用于身份验证和用户凭据。使用传统的 OAUTH2 流程,您现在可以执行此操作,一旦 API 发布,它会更容易。

于 2012-09-05T23:04:27.640 回答