我在 Android 上使用 Google Play 服务来访问 Google APIs 和 Google Cloud Endpoints。我还可以使用来自 Google Play 服务的令牌访问 appengine User api。这可能吗?此链接中有一些 OAuth 的示例代码,但有点模糊。我可以在标头中传递 oauth 令牌并使用以下代码获取用户吗?
User user = null;
try {
OAuthService oauth = OAuthServiceFactory.getOAuthService();
user = oauth.getCurrentUser();
} catch (OAuthRequestException e) {
// The consumer made an invalid OAuth request, used an access token that was
// revoked, or did not provide OAuth information.
// ...
}