我找不到使用Graph API将辅助管理员添加到OneDrive for Business的方法。
我可以找到使用PowerShell的方法,但是我想知道如何使用Graph API。
Connect-SPOService -Url https://example-admin.sharepoint.com/ -Credential admin@example.com
$sODFBSite="https://example-my.sharepoint.com/personal/target_user_example_com"
$sSecondaryODFBAdmin ="admin@example.com"
Set-SPOUser -Site $sODFBSite -LoginName $sSecondaryODFBAdmin -IsSiteCollectionAdmin $true
我检查的内容。