我正在尝试使用 PHP 和 CodeIgniter 以及 OAuth2 库从 gmail 获取电子邮件。我已经设置了 OAuth2 来获取用户访问令牌等。我可以通过这样做来获取用户信息
public function get_user_info(OAuth2_Token_Access $token)
{
$url = 'https://www.googleapis.com/oauth2/v1/userinfo?alt=json&'.http_build_query(array(
'access_token' => $token->access_token,
));
$user = json_decode(file_get_contents($url), true);
return array(
'uid' => $user['id'],
'nickname' => url_title($user['name'], '_', true),
'name' => $user['name'],
'first_name' => $user['given_name'],
'last_name' => $user['family_name'],
'email' => $user['email'],
'location' => null,
'image' => (isset($user['picture'])) ? $user['picture'] : null,
'description' => null,
'urls' => array(),
);
}
我现在想做的是获取一些电子邮件。我已经用谷歌搜索了一些关于如何获取电子邮件的代码,但我唯一能看到的是https://mail.google.com/mail/feed/atom/
. 我在 Google OAuth2 Playground 上找到了这个,但除了直接导航到它之外,我不知道如何使用它。
谁能给我一些建议?理想情况下,我想获取不仅仅是新的电子邮件(这似乎是上面的链接所做的)。