Я пытаюсь обновить событие календаря Google, используя полный календарь. Я успешно вставил событие в календарь Google, используя полный календарь. При обновлении я получаю 404, код ниже - это образец ошибки
"error": {
"errors": [
{
"domain": "global",
"reason": "notFound",
"message": "Not Found"
}
],
"code": 404,
"message": "Not Found"
}
}
Следуя примеру в справочнике Google (https://developers.google.com/calendar/v3/reference/events/update#php), я пытаюсь обновить событие календаря Google из Полный календарь. Вот что я делаю
//I am getting eventid from my db and all other values from the form
function edit_event_gcal(title,color,id) {
$.ajax({
url: 'Calendar.php',
type: "POST",
data: {"title":title, "color":color, "task": "editCalendar", "eventid": id},
success: function(data) {
console.log("Data",data)
}
});
}
Вот мой Календарь. php
require_once 'vendor/autoload.php'; //php library for google calendar
$sTask = (isset($_POST['task']) && !empty($_POST['task'])) ? $_POST['task'] : '';
$sTitle = (isset($_POST['title']) && !empty($_POST['title'])) ? $_POST['title'] : '';
$sColor = (isset($_POST['color']) && !empty($_POST['color'])) ? $_POST['color'] : '';
$sEventId = (isset($_POST['eventid']) && !empty($_POST['eventid'])) ? $_POST['eventid'] : '';
function getClient()
{
$client = new Google_Client();
$client->setApplicationName('Google Calendar API PHP Quickstart');
$client->setScopes(Google_Service_Calendar::CALENDAR_EVENTS);
$client->setAuthConfig('credentials.json');
$client->setAccessType('offline');
$client->setPrompt('select_account consent');
$tokenPath = 'token.json';
if (file_exists($tokenPath)) {
$accessToken = json_decode(file_get_contents($tokenPath), true);
$client->setAccessToken($accessToken);
}
if ($client->isAccessTokenExpired()) {
// Refresh the token if possible, else fetch a new one.
if ($client->getRefreshToken()) {
$client->fetchAccessTokenWithRefreshToken($client->getRefreshToken());
} 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));
// Exchange authorization code for an access token.
$accessToken = $client->fetchAccessTokenWithAuthCode($authCode);
$client->setAccessToken($accessToken);
// Check to see if there was an error.
if (array_key_exists('error', $accessToken)) {
throw new Exception(join(', ', $accessToken));
}
}
// Save the token to a file.
if (!file_exists(dirname($tokenPath))) {
mkdir(dirname($tokenPath), 0700, true);
}
file_put_contents($tokenPath, json_encode($client->getAccessToken()));
}
return $client;
}
$client = getClient();
$service = new Google_Service_Calendar($client);
$calendarId = 'mygooglecalendarid';
if($sTask == "editCalendar")
{
$event = $service->events->get('primary', $sEventId);
$event->setSummary('Appointment at Somewhere');
$updatedEvent = $service->events->update($calendarId, $event->getId(), $event);
//Print the updated date.
echo $updatedEvent->getUpdated();
}
Может ли кто-нибудь сказать мне, что я делаю не так? Я использую ту же конфигурацию для вставки. Ищу положительный ответ. Спасибо