所以看起来它正在创建服务,但是我无法从webapp关联框中读取gmail。有人有可行的例子吗?
我需要阅读gmail并解析要插入到gsheet中的关键点。我的gsheet代码适用于通过网络表单提交的数据,但是我们有一个应答服务,可以通过电子邮件将需要捕获并添加到gsheet的电话发送给我们。
到目前为止,我仅用于连接,但是失败了.....
require_once 'google-api-php-client-2.4.0/vendor/autoload.php';
/**
* Returns an authorized API client.
* @return Google_Client the authorized client object
*/
$client = new Google_Client();
$client->setApplicationName('Gmail API');
$client->setScopes(\Google_Service_Gmail::GMAIL_READONLY);
$client->setAuthConfig('secret.json');
$client->setAccessType('offline');
// print_r("<pre>" . $client . "</pre>");
$service = new Google_Service_Gmail($client);
print_r($service);