如何在php中插入谷歌日历并将数据库中的事件放入日历? 这是我的代码:
<?php
include_once 'init.php';
require_once './google-api-php-client-2.1.0/vendor/autoload.php';
session_start();
ob_start();
$client = new Google_Client();
$client->setApplicationName("app name");
$client->setDeveloperKey("api key");
?>
我接下来什么都不知道。请帮忙。 提前谢谢。