從組API和/Conversations
終點即可獲得對話的列表,並在組應用程序看,當你可以看到圖像的用戶。如何在Microsoft Graph Groups API中獲得用戶參考?
但數據從API返回的沒有任何利好數據使用用戶查找。
我至少會想到一個電子郵件地址,而不是僅僅是遠離唯一的名稱。有沒有一種有效的方式讓用戶不需要遍歷所有的線程和文章?從API
數據:
{
"@odata.context": "https://graph.microsoft.com/v1.0/$metadata#groups('{id}')/threads",
"value": [{
"id": "{id}",
"topic": "Test main thread",
"hasAttachments": false,
"lastDeliveredDateTime": "2017-10-20T11:35:04Z",
"uniqueSenders": [
"Jonas Stensved"
],
"preview": "{message preview content}",
"isLocked": false
},
{
"id": "{id}",
"topic": "The new Test group is ready",
"hasAttachments": false,
"lastDeliveredDateTime": "2017-10-13T10:33:03Z",
"uniqueSenders": [
"Test"
],
"preview": "{message preview content}",
"isLocked": false
}
]
}
如何在組應用一組看起來:
[]
是,問題更多的是對如何做到這一點的一個好辦法。沒有找到解決方法。 –