内容简介:http://stackoverflow.com/questions/35754241/how-to-remove-a-users-manager-in-azuread-using-microsoft-azure-activedirectory-g
我正在使用 Microsoft.Azure.ActiveDirectory.GraphClient
(版本2.1.0)为Azure AD用户管理写一个应用程序.我可以设置一个用户的管理者,但不知道如何清除该字段.
不幸的是, GitHub 提供的示例项目也不包含此功能.
我设法使用下面的代码清除“manager”字段.它没有使用Microsoft.Azure.ActiveDirectory.GraphClient库,但完成了这项工作.
var token = <get your adal token here> var httpClient = new HttpClient(); httpClient.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", token); var url = "https://graph.windows.net/<tenant domain>/users/<userid>/$links/manager?api-version=1.6" var resp = httpClient.DeleteAsync(url).Result; if (!resp.IsSuccessStatusCode) { // log / throw exception etc. }
http://stackoverflow.com/questions/35754241/how-to-remove-a-users-manager-in-azuread-using-microsoft-azure-activedirectory-g
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:- 使用Xref删除Erlang死代码
- 使用脚本批量删除docker镜像文件
- 使用sql语句创建和删除约束示例代码
- 如何使用Python删除一个文件或文件夹
- 使用Vue实现移动端左滑删除效果
- Java之HashMap迭代删除使用方法小结
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
The Probabilistic Method Second Edition
Noga Alon、Joel H. Spencer / Wiley-Blackwell / 2000 / $121.95
The leading reference on probabilistic methods in combinatorics-now expanded and updated When it was first published in 1991, The Probabilistic Method became instantly the standard reference on one......一起来看看 《The Probabilistic Method Second Edition》 这本书的介绍吧!