5

API を支援するために Deployd を使用し、認証のために dpd-passport を使用してプロジェクトを構築しています。

セッションキーが配布され、Google を介してユーザー認証が行われ、すべてが認証されているように見えますが、redirectURL返されたコールバック ページの翻訳だけでなく、s で問題が発生しています。

dpd-passport/index.js私はファイルを掘り下げましたが、これが関連情報だと思います:

var sendResponse = function(ctx, err, config) {
var sessionData = ctx.session.data;
var returnUrl = (ctx.req.cookies && ctx.req.cookies.get('_passportReturnUrl')) || null;

if(returnUrl) {
    var redirectURL = url.parse(returnUrl, true);

    // only append if not disabled
    if(!config.disableReturnParams) {
        // delete search so that query is used
        delete redirectURL.search;

        // make sure query is inited
        redirectURL.query = redirectURL.query || {};
        if(err) {
            redirectURL.query.success = false;
            redirectURL.query.error = err;
        } else {
            // append user + session id to the redirect url
            redirectURL.query.success = true;

            if(!config.disableSessionId) {
                redirectURL.query.sid = sessionData.id;
                redirectURL.query.uid = sessionData.uid;
            }
        }
    }

    var redirectURLString = '';
    try {
        redirectURLString = url.format(redirectURL);
    } catch(ex) {
        console.warn('An error happened while formatting the redirectURL', ex);
    }

    // redirect the user
    ctx.res.setHeader("Location", redirectURLString);
    ctx.res.statusCode = 302;

    ctx.done(null, 'This page has moved to ' + redirectURLString);
    } else {
        if(err) {
            ctx.res.statusCode = 401;
            console.error(err);
            return ctx.done('bad credentials');
        } else {
            ctx.done(err, { path: sessionData.path, id: sessionData.id, uid: sessionData.uid });
        }
    }
};

認証に成功すると、次のものが与えられますreturnUrl

http://localhost:3000/auth/google/callback?code=4/l4o-H2F4QKJ5tdKbVbGfWygTGRvhHgr9zrHWImFFKdM#

次の本体を使用:

{"path":"/users","id":"d03c0faccfe41134c193266afef979c5af33adf935aeff45844b0f9473dee4ab1fbd1114240e13ea9a542785da3845cfec984e3a5b8cb188d6c595b6fc39a726","uid":"747f97a9bcfa9811"}

これは、私の結果がelse一番上のコード ブロックの最後のステートメントに達しているように思えます。

これが true の場合、私のreturnUrlNULLです。

dpd-passport ファイルのコードをたどるreturnUrlと、次のスニペットで Cookie からこれを取得する必要があるようです。

if(ctx.query.redirectURL && this.config.allowedRedirectURLs) {
    try {
        this.regEx = this.regEx || new RegExp(this.config.allowedRedirectURLs, 'i');

        if(ctx.query.redirectURL.match(this.regEx)) {
            // save this info into the users session, so that we can access it later (even if the user was redirected to facebook)
            if (ctx.res.cookies) ctx.res.cookies.set('_passportReturnUrl', ctx.query.redirectURL);
        } else {
            debug(ctx.query.redirectURL, 'did not match', this.config.allowedRedirectURLs);
        }
    } catch(ex) {
        debug('Error parsing RedirectURL Regex!', ex);
    }
}

これに追加するために、次のようにallowedRedirectUrls設定しています。

^http://localhost:3000/.*$

私は途方に暮れていて、私が見逃していることが明らかなものがあることを望んでいます。

次のようなパスポート ルートと認証戦略を見てきましたが、これを dpd-passport に実装することに失敗しました。

app.get('/auth/google/callback', 
  passport.authenticate('google', { failureRedirect: '/login' }),
  function(req, res) {
    // Successful authentication, redirect home.
    res.redirect('/');
  });

これに加えて、私は ui-router/AngularJS を使用しています。

4

1 に答える 1

2

oauth 手順を開始するリンクを介して、redirectURL を dpd-passport に提供する必要があります。

http://localhost:2403/auth/google?redirectURL=http://localhost
于 2015-09-02T01:48:23.647 に答える