向Google Calendar API(PHP)添加'sendUpdates'=>'all'

时间:2019-10-31 20:25:25

标签: php google-calendar-api google-apis-explorer

我试图修改以下代码以添加'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/

1 个答案:

答案 0 :(得分:1)

必须添加它才能完成网址

$api_url = $api_url_ok.'/?sendUpdates=all';