验证后不调用 satellizer

satellizer then not called after authentication

我是 angular 的新手,所以我的知识是基于教程,即使那样我也没有成功。 我需要使用 google 帐户进行身份验证。这行得通,我得到了一个令牌,可以在其中授权我的 api 调用。但是登录后弹出 window 应该关闭,我应该被重定向到主页。这行不通。

这是我的控制器

angular.module('MyApp').controller('loginController', ['$scope', '$auth', '$location','loginService', loginController]);

function loginController($scope, $auth, $location, loginService) {
    $scope.authenticate = function(provider) {
        $auth.authenticate(provider).then(function(data) {
            loginService.saveToken(data.data.token);
            console.log('You have successfully signed in with ' + provider + '!');
            $location.path('http://localhost/#/home');
        });
    };
};

在app.js 我有我的配置。这不是我的工作,而是一个和我一样都是实习生的朋友,他负责一个移动应用程序,他在其中使用相同的功能来获取他的令牌,并且可以正常工作。

authProvider.google({
            clientId: CLIENT_ID,
            redirectUri: 'http://localhost:3000/api/users/signIn'
        });
        $authProvider.storage = 'localStorage'; // or 'sessionStorage'
        $authProvider.loginRedirect = 'http://localhost/#/home';

这是节点中的控制器,url 被重定向到(google 开发者控制台)

router.get('/signIn', function(req, res) {
    //console.log(req);
    var code = req.query.code;
    oauth2Client.getToken(code, function(err, tokens) {
        if (!err) {
            https.get("https://www.googleapis.com/oauth2/v1/tokeninfo?access_token=" + tokens.access_token, function(response) {
                // Continuously update stream with data
                var body = '';
                response.setEncoding('utf8');
                response.on('data', function(d) {
                    body += d;
                });

                // Data fetched
                response.on('end', function() {
                    var parsed = JSON.parse(body);
                    // Check if client_id is from the right app
                    if (parsed.issued_to == '343234242055-vd082vo0o8r8lmfvp1a973736fd98dht.apps.googleusercontent.com') {
                        User.getGoogleId(parsed.user_id, function(err, user) {
                            if (err) {
                                res.status(500).send({
                                    message: 'not authorized app'
                                });
                            }

                            // No user returned, create one
                            if (!user) {

                                // Request user info
                                oauth2Client.setCredentials(tokens);
                                plus.people.get({
                                    userId: 'me',
                                    auth: oauth2Client
                                }, function(err, plusUser) {
                                    if (err) res.status(500).send({
                                        message: 'not authorized app'
                                    });
                                    else {

                                        // Create new user
                                        User.create(plusUser.name.givenName, plusUser.name.familyName, (plusUser.name.givenName + "." + plusUser.name.familyName + "@cozmos.be").toLowerCase(), parsed.user_id, function(err, newUser) {
                                            if (err) res.status(500).send({
                                                message: 'not authorized app'
                                            });
                                            else {
                                                res.statusCode = 200;
                                                return res.send({
                                                    response: 'Success',
                                                    id: user._id,
                                                    firstName: user.firstName,
                                                    lastName: user.lastName,
                                                    email: user.email,
                                                    token: tokens.access_token
                                                });
                                            }
                                        });
                                    }
                                });
                            } else {
                                // Return user
                                res.statusCode = 200;
                                return res.send({
                                    response: 'Success',
                                    id: user._id,
                                    firstName: user.firstName,
                                    lastName: user.lastName,
                                    email: user.email,
                                    token: tokens.access_token
                                });
                            }
                        });
                    }

                    // if not right app, return unauthorized response
                    else {
                        res.status(500).send({
                            message: 'not authorized app'
                        });
                    }
                });
            });
        }
    });

});

所以我登录,我被要求授予应用程序使用我的帐户信息的权限,我收到一个 json 响应,我可以在其中看到我的姓名、电子邮件和令牌,仅此而已

即使在我所在的公司,也没有人能找到答案。所以我自己想出了一个解决方案。我不再使用卫星化器了。

 .when('/access_token=:access_token', {
            template: '',
            controller: function($window, $http, $location, $rootScope) {
                var hash = $location.path().substr(1);

                var splitted = hash.split('&');
                var params = {};

                for (var i = 0; i < splitted.length; i++) {
                    var param = splitted[i].split('=');
                    var key = param[0];
                    var value = param[1];
                    params[key] = value;
                    $rootScope.accesstoken = params;
                }
                console.log(params.access_token);
                var json = {
                    Token: params.access_token
                };
                $window.localStorage['token'] = params.access_token;
                $http.post('http://localhost:3000/api/users/signIn', json).success(function(data, status) {
                    console.log(data);
                }).error(function(err) {
                    console.log(err);
                });

                $location.path("/home");
            }

            /*controller: 'createNewsFeed',
          templateUrl: 'homepage.html'*/
        }).

所以自己重定向页面。因为身份验证在后端进行,所以我可以获得一个访问令牌,这是我将来使用其余部分真正需要的唯一东西 api。我定义了一个路由,在收到带有令牌的 json 后,我的浏览器被手动重定向到 $window.location。因此,当该页面加载时(用户不可见,速度太快以至于无法注意到)我分析令牌,保存令牌,分析身份验证,当成功时我手动重定向到主页。