1

我正在使用 php-ews 库与交换集成。我想知道是否有任何方法可以访问全局地址簿,我已经搜索了文档,但没有任何结果。我想访问它,以便查看房间资源。

谢谢

4

2 回答 2

3

我不认为该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);

在哪里提供$emailand$start$end。注意:您访问 EWS API 的帐户需要模拟权限。

祝你好运。

于 2014-05-22T19:51:09.693 回答
0

@Souljacker - EWS 不公开全球通讯簿。如果要查找房间资源,可以使用GetRoomLists 操作GetRooms 操作。EWS 从全局通讯簿公开信息的唯一位置是通过ResolveNames 操作和带有 Directory 选项的FindPeople 操作。

于 2014-05-06T21:52:16.040 回答