我正在使用Microsoft Graph Delta功能来跟踪消息文件夹中的更改,我根据Delta documentation
构建了我的请求当我收到回复时,其中包含重复的密钥id
。
请求网址:
/v1.0/users/me/mailFolders('inbox')/messages/delta?$top=2&$select=id
这是我收到的回复:
{
"@odata.context":
"https://graph.microsoft.com/v1.0/$metadata#Collection(message)",
"@odata.nextLink":
"https://graph.microsoft.com/v1.0/users/me/mailFolders('inbox')/messages/delta?$skiptoken={token}",
"value": [
{
"@odata.type": "#microsoft.graph.message",
"@odata.etag": "W/\"{etag}\"",
"id": "xxxxxxxxxx",
"id": "xxxxxxxxxx"
},
{
"@odata.type": "#microsoft.graph.message",
"@odata.etag": "W/\"{etag}",
"id": "xxxxxxx",
"id": "xxxxxxx"
}
]
}
我在这里做错了什么或遗失了吗? TIA