MS Teams の「Tasks by Planner and To Do」にタスクを作成する、完全に構築された API があります。
MS 実際に使用したグラフ API POST
https://graph.microsoft.com/v1.0/planner/tasks
サンプル API:
{
"routeId": "7fcxxxxx-xxxx-xxxx-xxxx-5d35838xxxxx",
"userId": "77cxxxxx-xxxx-xxxx-xxxx-5f09858xxxxx",
"tenantId": "dcdxxxxx-xxxx-xxxx-xxxx-31002a1xxxxx",
"title": "Task: Add you task title",
"hospitalAssignment": null,
"percentComplete": 0,
"createdTimestamp": "2021-04-20T01:51:49Z",
"startDateTimestamp": "2021-04-20T18:10:15Z",
"dueDate": "2021-11-20T11:47:33.000Z",
"Notes": "Add some useful notes here",
"checklistItems": [
{
"title": "itema"
},
{
"title": "itemb"
}
],
"attachments": [
{
"url": "https://www.google.com",
"alias": "link"
},
{
"url": "https://teams.microsoft.com/file/....",
"alias": "Test Document 1"
},
{
"url": "https://random.sharepoint.com/sites/...",
"alias": "Test Document 2"
},
],
"comments": "null,",
"priority": null
}
上記の API をヒットすると、以下に示すようにプランナーにタスクが作成されます
それで、ここに問題があります-クリックしようとするlink
と、ブラウザに移動して開きますが、問題ありませんgoogle
。Test Document 1
ここで、 orをクリックすると、それぞれ andTest Document 2
がスローされます。unknown error
Sorry, something went wrong
その後、タスクを手動で作成し、添付ファイルを追加してAdd Attachment
そこにファイルへのリンクを貼り付け、ファイルをクリックしてドキュメントを開きます。