Azure AD B2B 邀请 API:禁用验证
Azure AD B2B Invite API: disable verification
我们的应用程序主要供内部用户使用,他们通过 AAD 进行身份验证。某些页面需要可供第三方访问。现在我们正在使用自定义令牌,但想切换到 Azure AD B2B 邀请 API。
我们刚刚进行了一些手动测试运行,它似乎完全按照预期工作,除了一件事:在邀请我的独立电子邮件地址时,我被要求创建一个 Microsoft 帐户,这很好。但是,为此,我必须先验证我的电子邮件地址(发送到电子邮件的代码),然后再验证我的 phone(通过短信发送的代码)。
有没有什么方法可以同时禁用或至少禁用 phone 验证?
到目前为止我找到的唯一资源表明它在 B2C 中是可能的,这不是我们想要的。
独立电子邮件地址必须经过 invitation redemption process. In order to be able to invite people without redemption in Azure AD B2B you need an account with directory read permission of the partners tenant. Then you can add that user to your tenant with "Guest Inviter" role. Then that user can add the users to your tenant without invitation redemption process. Refer: Azure AD B2B: How to bulk add guest users without invitation redemption.
我们的应用程序主要供内部用户使用,他们通过 AAD 进行身份验证。某些页面需要可供第三方访问。现在我们正在使用自定义令牌,但想切换到 Azure AD B2B 邀请 API。
我们刚刚进行了一些手动测试运行,它似乎完全按照预期工作,除了一件事:在邀请我的独立电子邮件地址时,我被要求创建一个 Microsoft 帐户,这很好。但是,为此,我必须先验证我的电子邮件地址(发送到电子邮件的代码),然后再验证我的 phone(通过短信发送的代码)。
有没有什么方法可以同时禁用或至少禁用 phone 验证?
到目前为止我找到的唯一资源表明它在 B2C 中是可能的,这不是我们想要的。
独立电子邮件地址必须经过 invitation redemption process. In order to be able to invite people without redemption in Azure AD B2B you need an account with directory read permission of the partners tenant. Then you can add that user to your tenant with "Guest Inviter" role. Then that user can add the users to your tenant without invitation redemption process. Refer: Azure AD B2B: How to bulk add guest users without invitation redemption.