我用的php-EWS库与交流整合工作。 我想知道是否有任何的方式来访问全局地址簿,我搜索的文件,并没有出现。 我想访问它,所以我可以来看房的资源。
谢谢
我用的php-EWS库与交流整合工作。 我想知道是否有任何的方式来访问全局地址簿,我搜索的文件,并没有出现。 我想访问它,所以我可以来看房的资源。
谢谢
我不认为GetRooms
方法是以往任何时候加入到PHP-EWS。 看来他们只是放弃发展。 看.. https://github.com/jamesiarmes/php-ews/issues/91
作为一种变通方法,如果在Active Directory中存在你的房间,你可以通过使用房间的电子邮件地址,以获得它的日历中的php-EWS每个房间做一个LDAP查询来获取房间,然后循环。 否则,你可能保持房间分贝名单与他们的电子邮件地址和循环之前将它们拉的方式。
一旦你的房间的电子邮件地址,你会使用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的帐户,将需要模拟权限。
祝好运。
@Souljacker - EWS不公开全球通讯簿。 如果你想找到机房资源,你可以使用GetRoomLists操作和GetRooms操作 。 即EWS暴露从全局地址簿信息的唯一的地方是通过ResolveNames操作和FindPeople操作与目录选项。