我正在尝试将 Outlook 日历集成到我的 elixir 应用程序中。
我参考了https://docs.microsoft.com/en-us/graph/api/user-post-events?view=graph-rest-1.0&tabs=http链接来创建日历事件。
我无法为日历活动创建会议链接。
当他通过日历(GUI)创建时,可以创建团队会议链接,所以我相信一定有办法做到这一点。我想我错过了创建会议链接的密钥。
我的请求网址 - https://graph.microsoft.com/v1.0/me/events
我的请求有效载荷是
{
"start" => start_time,
"end" => end_time,
"attendees" =>[
%{
"type" => "required",
"emailAddress" => %{
"address" => attendee.email,
"name" => ""
}
}]
"body" => %{
"contentType" => "HTML",
"content" => description
},
"location" => %{"displayName" => location},
"subject" => summary
}
有效负载以 elixir 格式在此处打印,但我将其转换为普通 JSON 对象并发送。我能够创建事件,但无法同时创建会议链接。
请帮我创建会议链接.. 谢谢