oauth認証によってグーグルからメール(imap)を取得しようとしています。動作する権限を持っていますが、メールを取得できません。私が理解しているように、それは可能であるはずです。しかし、Googleにはメールを取得するためのAPIがありません(?)。しかし、私は次のことを見つけました:
https://developers.google.com/google-apps/gmail/oauth_overview
それは言う:
IMAPを使用したメールへのアクセスとSMTPを使用したメールの送信は、便宜上、既存のIMAPおよびSMTPライブラリを使用して行われることがよくあります。これらのライブラリがSimpleAuthenticationand Security Layer(SASL)をサポートしている限り、GmailでサポートされているOAuthメカニズムと互換性がある必要があります。開発者は、IMAPとSMTPをサポートするライブラリを使用することに加えて、OAuthを処理するために多くの既存のライブラリの1つを使用することもできます。
私が使用でき、ドキュメントもある既存のライブラリを知っている人はいますか?google-api-php-clientを使用しています。
コード
session_start();
ini_set('display_errors',1);
error_reporting(-1);
require_once '../../src/apiClient.php';
$client = new apiClient();
$client->setApplicationName('Mailendar');
$client->setScopes("http://www.google.com/m8/feeds/");
// Documentation: http://code.google.com/apis/gdata/docs/2.0/basics.html
// Visit https://code.google.com/apis/console?api=contacts to generate your
// oauth2_client_id, oauth2_client_secret, and register your oauth2_redirect_uri.
$client->setClientId('secret');
$client->setClientSecret('secret');
$client->setRedirectUri('secret');
$client->setDeveloperKey('secret');
if (isset($_GET['code'])) {
$client->authenticate();
$_SESSION['token'] = $client->getAccessToken();
$redirect = 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF'];
header('Location: ' . filter_var($redirect, FILTER_SANITIZE_URL));
}
if (isset($_SESSION['token'])) {
echo "token is set";
$client->setAccessToken($_SESSION['token']);
}
if (isset($_REQUEST['logout'])) {
unset($_SESSION['token']);
$client->revokeToken();
}
if ($client->getAccessToken()) {
MAGIC HAPPENS HERE!!!...but is unkown for me ofc
// The access token may have been updated lazily.
$_SESSION['token'] = $client->getAccessToken();
} else {
$auth = $client->createAuthUrl();
}
if (isset($auth)) {
print "<a class=login href='$auth'>Connect Me!</a>";
} else {
print "<a class=logout href='?logout'>Logout</a>";
}
ありがとう!