Online meeting
5 TopicsHow to open the teams online meeting URL immediately with a browser?
Hi I want to open the online meeting url directly through a browser. url like... https://teams.microsoft.com/l/meetup-join/19%3ameeting_NGQ1YT...long long url Currently, you have to choose whether to use a desktop app or a browser when you click url. If refer to this link, will be able to open with the Teams app so that they can participate in the meeting without a selection window. "msteams" instead of "https" However, when you open a link through a browser, you always have to choose whether to use the browser or the Teams app. Is there a good way to open it with a browser without the selection window?20KViews1like1Commentasked for scope 'OnlineMeetings.ReadWrite.All' that doesn't exist on the resource
I'm trying to get Auth. code for OnlineMeetingsReadWrite.All scope. But it returns an error said: "The application 'HSR Teams Integration' asked for scope 'OnlineMeetings.ReadWrite.All' that doesn't exist on the resource '00000003-0000-0000-c000-000000000000'. Contact the app vendor.". I checked everthing triple times and I can't still figure out where is the problem. Here is my request: https://i.hizliresim.com/m3r21ek.png Here is my api permissions: https://i.hizliresim.com/gsa73fe.png We also have application access policy for this application. Why I'm getting this error ? I checked that client id is correctSolved3.6KViews0likes8CommentsCreate online meeting and pass guest name with join url
Hello, we want to create an online meeting via graph api. We dit it through cloud communications create call. But when the guest attendee click on join url it must write a name in order to continue to get into the meeting. Is it possible to pass that name with join url (on somewhere else) in order to bypass the step for writing the name to join the meeting? We want to know every attendee that joins the meeting with a specific name from our application. Best, DimitrisSolved1.8KViews0likes1CommentMS graph API - How can I send the generated events as a message ?
I want to make an online meeting event and send a message to the channel. I made an online meeting event and checked that all mail and notifications work properly. The important thing is that I want to send the event as a message to the channel. When I create event, var @event = new Event { Subject = subject, Body = new ItemBody { ContentType = BodyType.Html, Content = subject }, Start = new DateTimeTimeZone { DateTime = "2020-09-22T14:30:00", TimeZone = "Korea Standard Time" }, End = new DateTimeTimeZone { DateTime = "2020-09-22T14:35:00", TimeZone = "Korea Standard Time" }, Organizer = new Recipient() { EmailAddress = new EmailAddress { Address = groupInfo.Mail, Name = groupInfo.DisplayName } } , Attendees = new List<Attendee>() { new Attendee { EmailAddress = new EmailAddress { Address = ownMail, Name = "name", }, Type = AttendeeType.Required, Status = new ResponseStatus { Response = ResponseType.Accepted } } , new Attendee { EmailAddress = new EmailAddress { Address = groupInfo.Mail, Name = groupInfo.DisplayName }, Type = AttendeeType.Required } }, AllowNewTimeProposals = true, IsOnlineMeeting = true, OnlineMeetingProvider = OnlineMeetingProviderType.TeamsForBusiness, IsOrganizer = false, ResponseStatus = new ResponseStatus() { Response = ResponseType.Organizer } }; result2 = await graphClient.Groups[pGroupId].Events .Request() .Header("Prefer", "outlook.timezone=\"Korea Standard Time\"") .AddAsync(@event); For now, i'm sending back an online meeting url as a message at channel. like this, var chatMessage = new ChatMessage { Subject = result2.Subject, Body = new ItemBody { ContentType = result2.Body.ContentType, Content = result2.Body.Content } }; await graphClient.Teams[pGroupId].Channels[channel.Id].Messages .Request() .AddAsync(chatMessage); I tried https://docs.microsoft.com/en-us/graph/api/chatmessage-post?view=graph-rest-beta&tabs=csharpbut my events don't have attachments. Please let me know if you have a way. I've been looking all day, but I don't know. Thank you for any help.1.7KViews0likes1CommentI 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 ?915Views0likes1Comment