PHPからapiを使用してGoogleカレンダーにイベントを送信しようとしています。これには常にいくつかのエラーがあります。次に何をすべきか理解できません。phpでapiを使用してGoogleカレンダーにイベントを送信するエラーを修正するには
致命的なエラー:メッセージ「エラー呼び出しPOST https://www.googleapis.com/calendar/v3/calendars/[email protected]/events?key= {私はここにあります}:(401)ログインが必要です」の「Google_ServiceException」のキャッチされない例外が見つかりました/ home/abcd/public_html/mouthworks/gplus-verifytoken- php-master/google-api-php-client/src/io/Google_REST.php:66スタックトレース:#0/home/abcd/public_html/mouthworks/gplus-verifytoken-php-master/google-api-php-client /src/io/Google_REST.php(36):Google_REST :: decodeHttpResponse(Object(Google_HttpRequest))#1/home/abcd/public_html/mouthworks/gplus-verifytoken-php-master/google-api-php-client/src /service/Google_ServiceResource.php(186):Google_REST :: execute(Object(Google_HttpRequest))#2/home/abcd/public_html/mouthworks/gplus-verifytoken-php-master/google-api-php-client/src/contrib /Google_CalendarService.php(494):Google_ServiceResource - > __ call( 'insert'、Array)#3/home/abcd/public_html/mouthworks/t (/ home/abcd/public_html/mouthworks/gplus-verifytoken-php-master/google-api-php-client/google_Even内のGoogle_Even)私はここに気づいていSRC/IO/Google_REST.php 66
require_once './gplus-verifytoken-php-master/
google-api-php-client/src/Google_Client.php';
require_once '
./gplus-verifytoken-php-master/
google-api-php- client/src/contrib/Google_CalendarService.php';
session_start();
ob_start();
$client = new Google_Client();
$client->setApplicationName('demo');
$client->
setClientId('client id');
$client->setClientSecret('secret');
$client->setRedirectUri('http://someurl.com');
$client->
setDeveloperKey('dev key');
$cal = new Google_CalendarService($client);
$event = new Google_Event();
$event->setSummary('Pi Day');
$event->setLocation('Math Classroom');
$start = new Google_EventDateTime();
$start->setDateTime('2016-11-14T10:00:00.000-05:00');
$event->setStart($start);
$end = new Google_EventDateTime();
$end->setDateTime('2016-11-14T10:25:00.000-05:00');
$event->setEnd($end);
// error is on this next line
$createdEvent =
$cal->events->insert('[email protected]',$event);
echo $createdEvent->id;
?>
正確に何がエラーなのですか? – DaImTo
「Google_ServiceException」というメッセージで「POST some url – shalder
を呼び出す際にエラーが発生しました。完全なエラーを完全にコピーして質問に入れることができますか? – DaImTo