Passport - Azure AD - Application not supported for this version of the API

When I use the passport-azure-ad NPM package to try to connect to Azure AD, I get the error message below. I successfully connected to Facebook, Google and MSFT Live, but I can’t understand why Azure AD does not like my configuration.

What does this error mean?

Mistake:

Application xxx is not supported for this API version.

I looked through quite a few articles and the GitHub repository, but each of them is slightly different and does not make it clear which parameters are required.

https://github.com/AzureADQuickStarts/B2C-WebApi-Nodejs/blob/master/node-server/app.js https://github.com/Azure-Samples/active-directory-node-webapp-openidconnect/blob /master/app.js

Here is my configuration:

var OIDCStrategy = require('passport-azure-ad').OIDCStrategy;

var WINDOWS_AD_CLIENT_ID = "xxxx"
var WINDOWS_AD_CLIENT_SECRET = "xxxx"

passport.use(new OIDCStrategy({
        callbackURL: "/dealer/auth/azuread/callback"
        , realm: 'xxxxx' //tenant Id
        , clientID: WINDOWS_AD_CLIENT_ID
        , clientSecret: WINDOWS_AD_CLIENT_SECRET
        , identityMetadata: 'https://login.microsoftonline.com/common/.well-known/openid-configuration'
        //, tenantName: 'xxxx.onmicrosoft.com'
        //, policyName: 'B2C_1_DealerSignin'
        //, validateIssuer: true
        //, audience: 'http://localhost:3000/dealer'
        //oidcIssuer: config.creds.issuer,
        , skipUserProfile: true // for AzureAD should be set to true.
        , responseType: 'id_token' // for login only flows use id_token. For accessing resources use `id_token code`
        , responseMode: 'form_post' // For login only flows we should have token passed back to us in a POST
        //scope: ['email', 'profile'] // additional scopes you may wish to pass
    },
    function(iss, sub, profile, accessToken, refreshToken, done) {
        console.log("Windows AD Profile retrieved")
        return done(null, profile);
    }
));

And Routes:

router.get('/auth/azuread',
    passport.authenticate('azuread-openidconnect', { scope: 'email profile' }),
    function(){
        console.log("Azure AD endpoint invoked.")
    });

router.post('/auth/azuread/callback',
    function(req, res, next) {
        console.log("Azure AD Auth callback is invoked")
        next()
    },
    passport.authenticate('azuread-openidconnect'),
    function(req, res) {
        console.log("Azure AD Auth callback is finished")
        res.redirect('/dealer');
    }
);
+4
1

, :

Portal.Azure.com -> Azure AD -> App Registrations

.

:

apps.dev.microsoft.com

. , - .

+1

Source: https://habr.com/ru/post/1617110/


All Articles