我使用skype web sdk创建应用程序。
以下是登录的代码:
public OrderItemsMapping()
{
this.HasKey(x => x.Id);
this.Property(x => x.GoodId).IsRequired();
this.Property(x => x.OrderId).IsRequired();
this.Property(x => x.Price).IsRequired();
this.Property(x => x.Quantity).IsRequired();
this.Property(x => x.Score).IsRequired();
this.HasOptional(x => x.Order)
.WithOptionalPrincipal(x => x.OrderItems)
.Map(configurationAction: new Action<ForeignKeyAssociationMappingConfiguration>(x => x.MapKey()));
}
点击按钮,我收到以下错误:
获取https://lyncdiscover.mydomain.onmicrosoft.com/xframe 净:: ERR_INSECURE_RESPONSE
https://lyncdiscoverinternal.mydomain.onmicrosoft.com/xframe 净:: ERR_NAME_NOT_RESOLVED
我在这里做错了什么?
答案 0 :(得分:2)
如果您在线使用Skype for Bussiness,则应使用 Azure AD 进行身份验证。 请阅读这篇文章:https://msdn.microsoft.com/en-us/skype/ucwa/developingucwaapplicationsforsfbonline
在您的示例中,您尝试使用密码身份验证,该身份验证仅适用于本地Skype for Bussiness。