是否有任何方法可以将Get-MailboxFolderStatistics
返回的folderId
(storeId
)转换为Microsoft图形API restId
?
我尝试使用users/{userId}/translateExchangeIds
端点,但没有得到任何有用的结果。
users/{userId}/translateExchangeIds
终结点是否支持将storeId
转换为restId
?
有没有其他方法来翻译这个id?
是否有任何方法可以将Get-MailboxFolderStatistics
返回的folderId
(storeId
)转换为Microsoft图形API restId
?
我尝试使用users/{userId}/translateExchangeIds
端点,但没有得到任何有用的结果。
users/{userId}/translateExchangeIds
终结点是否支持将storeId
转换为restId
?
有没有其他方法来翻译这个id?
1条答案
按热度按时间szqfcxe21#
您需要自己将
storeId
转换为entryId
,然后使用users/{userId}/translateExchangeIds
将entryId
转换为restId
。要将
storeId
转换为entryId
,请将folderId
从base64字符串转换为十六进制字符串。然后解析entryId
十六进制字符串并将entryId
十六进制字符串编码为entryId
。将值为
LgAAAADMaqNx7y87SYAkFzRBDsNkAQDBGxV/99wUQoEROcv7tgfjAAAWrAyWAAAB
的folderId
转换为entryId
AAAAAMxqo3HvLztJgCQXNEEOw2QBAMEbFX_33BRCgRE5y_u2B-MAABasDJYAAA2
然后在调用中使用转换后的
entryId
回应
资源:
URL安全