简体   繁体   English

MS Teams - 会议中的某个人应该尽快让您加入

[英]MS Teams - Someone in the meeting should let you in soon

I am creating an MS Teams meeting using Graph API我正在使用 Graph API 创建 MS Teams 会议

private string GetTeamsMeetingUrl()
{
    var appId = <<APP ID>>;
    var appSecret = <<APP SECRET >>;
    var tenantId = <<TENANT ID>>;
    var organizerId = <<ORGANIZER ID>>;

    IConfidentialClientApplication confidentialClientApplication = ConfidentialClientApplicationBuilder
        .Create(appId)
        .WithTenantId(tenantId)
        .WithClientSecret(appSecret)
        .Build();


    ClientCredentialProvider authenticationProvider = new ClientCredentialProvider(confidentialClientApplication);
    GraphServiceClient graphClient = new GraphServiceClient(authenticationProvider);

    var onlineMeeting = new OnlineMeeting
    {
        Subject = "Meeting Title",
        Participants = new MeetingParticipants
        {
            Organizer = new MeetingParticipantInfo
            {
                Identity = new IdentitySet
                {
                    User = new Identity
                    {
                        Id = organizerId
                    }
                }
            },
        }
    };

    var onlineMeetingResponse = await graphClient.Communications.OnlineMeetings.Request().AddAsync(onlineMeeting);
    return onlineMeetingResponse.JoinUrl;
}

And in Microsoft Teams admin center , I've set the policies as given belowMicrosoft Teams admin center ,我设置了如下所示的策略

Meetings - > Meeting policies - > Global(Org-wide default)
    Let anonymous people start a meeting - "ON"
    Automatically admit people - "Everyone"

Meetings - > Meeting setting
    Anonymous users can join a meeting - "ON"

Org-wide settings - > Guest access
    Allow guest access in Teams - "ON"

It was working as expected till last week.直到上周它都按预期工作。

Anonymous user and users of other organizations were able to join the meeting without "Admit" by organizer but all of sudden when anonymous user or user of another organization tries to join, we are getting " Someone in the meeting should let you in soon "匿名用户和其他组织的用户可以在没有组织者“承认”的情况下加入会议,但是突然当匿名用户或其他组织的用户尝试加入时,我们收到“会议中有人应该让您尽快加入

Kindly help if something else should also be configured.如果还应该配置其他内容,请提供帮助。

We also need to update the individual policy for the respective user in Microsoft Teams Center.我们还需要在 Microsoft Teams Center 中更新各个用户的个人策略。

在此处输入图片说明

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM