Skype for Business
1 TopicI want to make my online meeting event provider Skype For Business.
Greetings, I used graph api to create event and set the online meeting provider option to skypeForBusiness. var @event = new Event { Subject = "test", Body = new ItemBody { ContentType = BodyType.Html, Content = "test" }, Start = new DateTimeTimeZone { DateTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss") }, End = new DateTimeTimeZone { DateTime = DateTime.Now.AddHours(2).ToString("yyyy-MM-dd HH:mm:ss") }, AllowNewTimeProposals = true, IsOnlineMeeting = true, OnlineMeetingProvider = OnlineMeetingProviderType.SkypeForBusiness, }; var result_event = await graphClient.Me.Events .Request() .AddAsync(@event); The event was successfully created, but the isOnlineMeeting option in response was false and did not return OnlineMeeting joinUrl. So when I searched, it said that to interact with Skype For Business, I had to create a meeting using the https://docs.microsoft.com/en-us/skype-sdk/ucwa/unifiedcommunicationswebapi2_0 Can I create a meeting with Skype for Business if I set it up UCWA settings on the Azure server ?952Views0likes1Comment