添加 'sendUpdates' => 'all' 到 Google 日历 API (PHP)
Adding 'sendUpdates' => 'all' to Google Calendar API (PHP)
我正在尝试修改以下代码以添加 'sendUpdated' => 'all' 以便在创建或更新活动时所有与会者都会收到电子邮件。
<?php
// Exit if accessed directly.
defined( 'ABSPATH' ) || exit;
/**
* Google Calendar Synchronization.
*/
class WC_Appointments_GCal {
const TOKEN_TRANSIENT_TIME = 3500;
const DAYS_OF_WEEK = array(
1 => 'monday',
2 => 'tuesday',
3 => 'wednesday',
4 => 'thursday',
5 => 'friday',
6 => 'saturday',
7 => 'sunday',
);
.......full code can be found below...
完整代码:https://pastebin.com/PLEwYTZV
(以上代码不属于我,因为它是外部的原因,因为限制我无法粘贴所有内容。)
API 文档:https://developers.google.com/calendar/v3/reference/events/
必须添加这个才能完成 url
$api_url = $api_url_ok.'/?sendUpdates=all';
我正在尝试修改以下代码以添加 'sendUpdated' => 'all' 以便在创建或更新活动时所有与会者都会收到电子邮件。
<?php
// Exit if accessed directly.
defined( 'ABSPATH' ) || exit;
/**
* Google Calendar Synchronization.
*/
class WC_Appointments_GCal {
const TOKEN_TRANSIENT_TIME = 3500;
const DAYS_OF_WEEK = array(
1 => 'monday',
2 => 'tuesday',
3 => 'wednesday',
4 => 'thursday',
5 => 'friday',
6 => 'saturday',
7 => 'sunday',
);
.......full code can be found below...
完整代码:https://pastebin.com/PLEwYTZV
(以上代码不属于我,因为它是外部的原因,因为限制我无法粘贴所有内容。)
API 文档:https://developers.google.com/calendar/v3/reference/events/
必须添加这个才能完成 url
$api_url = $api_url_ok.'/?sendUpdates=all';