在 PHP 客户端库中为 Google 使用哪个服务来获取姓名和电子邮件地址等基本信息是正确的?

Which would be right service to use in PHP client library for Google to get basic info like name and email address?

我关注this tutorial from last year, which teaches how to use Login with google for your website and get basic user info. In tutorial they are using Google_Oauth2Service class, which I could not find in PHP client library我下载了。

有一个名为 oAuth2 的类似服务,但它似乎需要 Google+ 帐户。我不想使用 Google+ 服务。

最容易使用的是 Plus API,具有 people.get 功能:https://developers.google.com/+/api/latest/people/get。只要您请求 profile 范围,该功能就适用于所有用户 - 他们不必拥有 Google+ 个人资料或已授予 https://www.googleapis.com/auth/plus.login 范围。