我们的应用程序使用 Microsoft Graph API 并与OneDrive for Business(ODFB)进行通信。我们的主要用例是ODFB中的租户管理员。
我想仅限验证到ODFB。我只有管理员权限范围,但OD个人仍然愉快地进行身份验证。
考虑使用我的网站网址url端点,该端点适用于ODFB,但为OD个人返回404
:
https://graph.microsoft.com/v1.0/me?$select=mySite
虽然感觉做作,但是在我们检查这是否是个人的OD(这不是理想的)之前,用户将被成功验证
有更好的方法吗?
答案 0 :(得分:2)
在您的身份验证请求网址中,将tm_shape(mapa) +
tm_lines(
col = 'vl_br',
legend.col.show = FALSE,
lwd = 3) +
tm_shape(postos) +
tm_bubbles(
col = 'blue',
size = .1) +
tm_shape(tab_sf) +
tm_symbols(
size = 0.1,
shape = 16,
alpha = 0.5,
jitter = .3,
col = 'red')
租户替换为 tm_shape(mapa) +
tm_lines(
col = 'vl_br',
legend.col.show = FALSE,
lwd = 3) +
tm_shape(postos) +
tm_bubbles(
col = 'blue',
size = .1) +
tm_shape(tab_sf) +
tm_symbols(
size = 0.1,
shape = 16,
alpha = 0.5,
jitter = .3,
col = 'red') +
tm_facets('Mês')
。这会将身份验证仅限制为AAD帐户(即OneDrive for Business)。
您可以在this documentation中找到详细说明。