php-ews访问全球通讯簿

时间:2014-05-01 12:46:24

标签: php exchangewebservices office365 php-ews

我正在使用php-ews库与Exchange进行集成。我想知道是否有任何方法可以访问全球通讯录,我已经搜索了文档,没有任何内容出现。我想访问它,以便我可以查看房间资源。

由于

2 个答案:

答案 0 :(得分:2)

我不认为GetRooms方法曾被添加到php-ews中。看来他们只是放弃了发展。 见.. https://github.com/jamesiarmes/php-ews/issues/91

作为一种解决方法,如果您的房间存在于Active Directory中,您可以执行LDAP查询以获取房间,然后使用房间的电子邮件地址遍历每个房间以使用php-ews获取它的日历。否则,您可以使用其电子邮件地址维护房间的数据库列表,并在循环之前将其拉出来。

一旦你有了房间'电子邮件地址,您使用Exchange模仿,冒充房间的电子邮件来查看它的日历。

像这样......

// Configure impersonation using the conference OwnerEmailAddress
    $ei = new EWSType_ExchangeImpersonationType();
    $sid = new EWSType_ConnectingSIDType();
    $sid->PrimarySmtpAddress = $email;
    $ei->ConnectingSID = $sid;
    $ews->setImpersonation($ei);
    // Set the search for calendar item types   
    $request = new EWSType_FindItemType();
    $request->Traversal = EWSType_ItemQueryTraversalType::SHALLOW;
    $request->ItemShape = new EWSType_ItemResponseShapeType();
    $request->ItemShape->BaseShape = EWSType_DefaultShapeNamesType::ALL_PROPERTIES;
    $request->CalendarView = new EWSType_CalendarViewType();
    // Set the instance start and end times 
    $request->CalendarView->StartDate = $start->format('Y-m-d\TH:i:s'); 
    $request->CalendarView->EndDate = $end->format('Y-m-d\TH:i:s');
    // Set the search location as the calendars folder of the impersonated user
    $request->ParentFolderIds = new EWSType_NonEmptyArrayOfBaseFolderIdsType();
    $request->ParentFolderIds->DistinguishedFolderId = new EWSType_DistinguishedFolderIdType();
    $request->ParentFolderIds->DistinguishedFolderId->Id = EWSType_DistinguishedFolderIdNameType::CALENDAR;
    $request->ParentFolderIds->DistinguishedFolderId->Mailbox->EmailAddress = $email; 
    // Execute the search
    $response = $ews->FindItem($request);

您提供$email$start以及$end。注意:您访问EWS API的帐户将需要模拟权限。

祝你好运。

答案 1 :(得分:0)

@Souljacker - EWS不公开全球通讯簿。如果您想查找房间资源,可以使用GetRoomLists operationGetRooms operation。 EWS通过全局通讯簿公开信息的唯一地方是ResolveNames operationFindPeople operation目录选项。