php - Exchange Web Services - how it recognize "global events"? There is no global ID -
i'm using php ews obtain events exchange, seems there no global id of event users. microsoft write in docs - https://msdn.microsoft.com/en-us/library/office/dn605828%28v=exchg.150%29.aspx
user organizer , event has 1 id. user b attendee, id event different when i'm reading data calendar. furthermore when user moves event dumpster event changes id in calendar.
is there way recognize event i'm looking for? need bind records in php application.
there $uid
in calendaritemtype.php
class of "pwp-ews", finditem()
, , getitem()
don't property.
/** * identifies calendar item. * * @since exchange 2007 * * @var string */ public $uid;
problem solved. add optional forth argument $version
exchangewebservices()
, finditem()
, , getitem()
returns uid.
Comments
Post a Comment