将'sendUpdates'=>'全部'添加到Google Calendar API(PHP)

问题描述 投票:0回答:1

我正在尝试修改以下代码以添加'sendUpdated'=>'全部',以便在创建或更新活动时所有与会者都收到电子邮件。

<?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/

php google-calendar-api google-apis-explorer
1个回答
0
投票

必须添加此内容以完成网址

$api_url = $api_url_ok.'/?sendUpdates=all';
© www.soinside.com 2019 - 2024. All rights reserved.