2
Google 캘린더에 이벤트를 추가, 업데이트 및 삭제해야하는 코드를 작성합니다. 사용자의 이메일 주소가 있어야합니다. 덧붙였다.Google 캘린더 API PHP는 클라이언트 측 인증을 건너 뛰고 모든 것을 명령 행 하나 대신 웹 애플리케이션으로 변환합니다
자동 클라이언트 측 인증 (자체 인증 확인 및 인증 코드 받기) 방법
대신 명령 줄의 웹 응용 프로그램에
전원을 켜고? 캔트이를 구현하는 자습서를 얻을
require_once 'vendor/autoload.php';
define('APPLICATION_NAME', 'Google Calendar API PHP Quickstart');
define('CREDENTIALS_PATH', '~/.credentials/calendar-php-quickstart.json');
define('CLIENT_SECRET_PATH', 'client_secret.json');
define('SCOPES', implode(' ',array(Google_Service_Calendar::CALENDAR_READONLY)));
if (php_sapi_name() != 'cli') {
throw new Exception('This application must be run on the command line.');
}
function getClient() {
$client = new Google_Client();
$client->setApplicationName(APPLICATION_NAME);
$client->setScopes(SCOPES);
$client->setAuthConfigFile(CLIENT_SECRET_PATH);
$client->setAccessType('offline');
$credentialsPath = expandHomeDirectory(CREDENTIALS_PATH);
if (file_exists($credentialsPath)) {
$accessToken = file_get_contents($credentialsPath);
} else {
// Request authorization from the user.
$authUrl = $client->createAuthUrl();
printf("Open the following link in your browser:\n%s\n", $authUrl);
print 'Enter verification code: ';
$authCode = trim(fgets(STDIN));
$accessToken = $client->authenticate($authCode);
if(!file_exists(dirname($credentialsPath))) {
mkdir(dirname($credentialsPath), 0700, true);
}
file_put_contents($credentialsPath, $accessToken);
printf("Credentials saved to %s\n", $credentialsPath);
}
$client->setAccessToken($accessToken);
if ($client->isAccessTokenExpired()) {
$client->refreshToken($client->getRefreshToken());
file_put_contents($credentialsPath, $client->getAccessToken());
}
return $client;
}
function expandHomeDirectory($path) {
$homeDirectory = getenv('HOME');
if (empty($homeDirectory)) {
$homeDirectory = getenv("HOMEDRIVE") . getenv("HOMEPATH");
}
return str_replace('~', realpath($homeDirectory), $path);
}
$client = getClient();
$service = new Google_Service_Calendar($client);
....
감사합니다. 이제 명령 줄에서 오류를 가져 오는 웹 응용 프로그램으로 사용하는 방법을 알아볼 수 있습니다.이 응용 프로그램은 명령 줄에서 실행해야합니다. 5.4보다 큰 PHP 버전이 있습니다. – fernandus
웹 페이지를 통해 처음으로 사용자를 인증해야합니다. 이 문제를 해결할 방법이 없습니다. 새로 고침 토큰을 얻으면 명령 줄을 실행하기 위해 다른 모든 기능을 자동화 할 수 있습니다. – DaImTo
웹 페이지에서 실행하려면 전체 응용 프로그램이 필요하며 어떤 경우에도 명령 줄을 사용하지 않을 것입니다. 나는 새로운 클라이언트 토큰을 새로 고치고 웹 페이지에서 새로운 액세스 토큰을 얻기 위해 토큰을 새로 고쳐야 만한다. 감사합니다. – fernandus