好的,我终于偶然发现了解决问题的方法。正如我所怀疑的,答案相当简单。我已经正确地做了很多事情。我的 Web 端点和我的 android 应用程序都在同一个 Google API 控制台项目中。他们分享了Audience等项目条目。
我发现的所有用于验证的示例都假设读者已经知道如何执行此操作,或者假设 PHP 需要生成令牌。最后,我偶然发现了关于验证令牌的 Google OAuth2 文档的这一部分,它让我了解了如何在我的 php 服务器上干净地进行验证。只是验证而已,妈妈!OAuth 足够令人困惑。还有其他示例用于从命令行使用 curl 进行验证。但是,这就是您在 PHP 中调用 tokeninfo 以验证 (1) 令牌是否有效以及 (2) 它适用于您的应用程序的方式。
$mToken = $_POST['mToken'];
$userinfo = 'https://www.googleapis.com/oauth2/v1/tokeninfo?id_token=' . $mToken;
$json = file_get_contents($userinfo);
$userInfoArray = json_decode($json,true);
$googleEmail = $userInfoArray['email'];
$tokenUserId = $userInfoArray['user_id'];
$tokenAudience = $userInfoArray['audience'];
$tokenIssuer = $userInfoArray['issuer'];
if ( strcasecmp( $tokenAudience, GOOGLE_FULL_CLIENT_ID ) != 0) {
error_log ( "ERROR:'" . $tokenAudience . "' did not match." );
}
变量 GOOGLE_FULL_CLIENT_ID 保存我的应用程序的受众字符串的值(您可以从应用程序的 Google API 控制台定义页面复制此值)。
在我的解决方案中,我决定使用 _POST 值对“mToken”将从我的 Android 应用程序生成的令牌传递到我的服务器端点。在 Android 中执行此操作的代码如下:
HttpPost httppost = new HttpPost("uri for your server web endpoint");
ArrayList<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>();
nameValuePairs.add(new BasicNameValuePair("mToken", mToken));
try {
HttpClient httpclient = new DefaultHttpClient();
httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
HttpResponse response = httpclient.execute(httppost);
} catch (Exception e) {
Log.e("HTTP", "Error in http connection " + e.toString());
}