2013-05-28 114 views
1

我已經使用Express框架和PassportJS支持(在node.js之上)創建了演示應用程序。我需要使用Wargaming.net帳戶實現OpenID身份驗證(OpenID url爲http://ru.wargaming.net/id/)。但Passport模塊返回「缺少OpenID標識符」的Flash消息。請幫助我在代碼中查找錯誤。缺少OpenID標識符

passport.use(new OpenIDStrategy({ 
    returnURL: 'http://localhost:3000/auth/openid/return', 
    realm: "http://localhost:3000/", 
    profile: true 
    }, 
    function(identifier, profile, done) { 
     User.findByOpenID(identifier, function (err, user) { 
     done(err, user); 
     }); 
    } 
)); 

app.post('/auth/openid', passport.authenticate('openid')); 
app.post('/auth/openid/return', 
    passport.authenticate('openid', { successRedirect: '/', 
           failureRedirect: '/login', 
           failureFlash: true })); 

回答

0

問題是在獲取配置文件。我仍然不知道什麼是錯的。所以我刪除了詢問配置文件並將URL「/ auth/openid/return」更改爲GET請求。所以現在代碼工作正常。