无法登录到我的新Lynda.com LinkedIn学习-Azure AD错误 [英] Can't login to my new Lynda.com LinkedIn Learning - Azure AD Error

查看:353
本文介绍了无法登录到我的新Lynda.com LinkedIn学习-Azure AD错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

尝试使用我的帐户访问我的新Lynda LinkedIn学习我遇到以下错误:

Trying to access my new Lynda LinkedIn Learning using my account I have the following error:

对不起,我们无法登录.

推荐答案

方案1:

Scenario 1:

该帐户需要添加为 租户中的外部用户/来宾用户.否则,请使用上述租户的其他Azure Active Directory用户帐户注销并再次登录.

The account needs to be added as an external user/guest user in the tenant first. Else, sign out and sign in again with a different Azure Active Directory user account from the said tenant.

场景2:

Scenario 2:

此问题可以通过指定 

This issue can be resolved by specifying the 'domain_hint' parameter which tells Azure AD which domain the user account should be from.  This will prevent the error page from showing if the user is logged in with a account from a different domain, also it will filter the list of accounts that have been remembered so the user will only be prompted to select ones ending with the domain that you have specified.

 

可以从客户端和服务器端进行配置,也可以从客户端 

It is possible to configure this from both the client and server side,  from the client '&domain_hint=foo.com' should be appended to the login.microsoftonline.com url.

 

如果您使用adal-angular.js进行登录,则可以通过将其包含在init方法中来指定域提示参数

If you are using adal-angular.js for your login you can specify the domain hint parameter by including it in the init method

 

    adalProvider.init(
        {
           实例:auth.instance,
           承租人:auth.tenant,
            clientId:auth.clientId,
           端点:auth.endpoints,
            redirectUri:window.location.origin +'/login',
            postLogoutRedirectUri:window.location.origin,
            extraQueryParameter:'domain_hint = foo.com',
        },
       

    adalProvider.init(
        {
            instance: auth.instance,
            tenant: auth.tenant,
            clientId: auth.clientId,
            endpoints: auth.endpoints,
            redirectUri: window.location.origin + '/login',
            postLogoutRedirectUri: window.location.origin,
            extraQueryParameter: 'domain_hint=foo.com',
        },
       


httpProvider
        );
httpProvider
        );

 

 


这篇关于无法登录到我的新Lynda.com LinkedIn学习-Azure AD错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆