我正在尝试在Office 365加载项中使用Graph API来从GAL中获取联系信息。以下任何一个查询都不返回GAL中的任何联系人,尽管两者都返回一些信息。
beta/me/contacts?$filter=displayName eq 'John Smith'
beta/me/people?$filter=displayName eq 'John Smith'
是否可以使用Graph API从GAL获取联系人?我有一种感觉,我没有给我的应用程序正确的访问GAL的权限。
答案 0 :(得分:2)
clc;
clear;
video = VideoReader('C:\Users\Small_Bird\Desktop\ch02_20170323193606~2.avi');
nFrames = video.NumberOfFrames;
H = video.Height;
W = video.Width;
Rate = video.Preallocate movie structure.
for frameNum = 3500:nFrames
P = read(video,frameNum);
grayImage=rgb2gray(P);
cannyEdge=edge(grayImage,'canny');
[m,n]=size(grayImage);
for i=1:m
for j=1:n
if 1==cannyEdge(i,j)
h(i,j)=grayImage(i,j)+3;
else
h(i,j)=grayImage(i,j);
end
end
end
thresh=graythresh(h);
I2=im2bw(h,thresh);
subplot(2,2,1);
imshow(grayImage),title('original image');
subplot(2,2,2);
imshow(cannyEdge),title('image after extracting edge');
subplot(2,2,3);
imshow(h),title('image after strengthening edge');
subplot(2,2,4);
imshow(I2),title('image after binaryzation');
end
端点返回默认Outlook联系人文件夹中的联系人。 /me/contacts
端点类似,但尝试提取联系人访问多个源的信息。
GAL代表贵组织的联系信息(即Active Directory)。要查看组织中其他用户的联系信息,请使用/users端点。要查看组织联系人(添加到AD / GAL的联系人),您需要使用/contacts端点(请注意路径中缺少/me/people
)。