'Microsoft Graph ToDo Task Get not able to expand open extension with other users
I'm using M Graph REST API v1.0. In particular to create, edit or update tasks in ToDo using a WebApp. I'm using an open extension to store more data that I need after.
The extension is expanded if the owner of the list or the user who create the task, get the task. However if other user, who share also this list, try to get the task the extension is not there. I mean the axios call responde with the task but without the extension.
The axios call is simple:
axios
.get(
"https://graph.microsoft.com/v1.0/me/todo/lists/" +
list.id +
"/tasks" +
"?$expand=Extensions($filter=id%20eq%20'microsoft.graph.openTypeExtension.Ch.mycompany.extrasTask')",
{
headers: {
Authorization: "Bearer " + String(this.tokenGraph),
Accept: "application/json;odata.metadata=none",
},
}
)
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
