然后在验证后不调用卫星

时间:2016-04-18 12:48:49

标签: angularjs node.js authentication satellizer

我对角度很新,所以我的知识基于教程,即便如此我也没有成功。 我需要使用Google帐户进行身份验证。这样做,我得到一个令牌,我的api电话可以授权。但登录后弹出窗口应该解散,我应该被重定向到主页。这不起作用。

这是我的控制器

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';

这是节点中的控制器,其中网址被重定向到(谷歌开发者控制台)

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响应,我可以看到我的姓名,电子邮件和令牌,就是这样

1 个答案:

答案 0 :(得分:0)

即使在我工作的公司内,也没有人能找到答案。所以我自己带来了一个解决方案。我不再使用卫星了。

 .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'*/
        }).

因此,重定向页面本身。因为身份验证在后端工作,所以我可以获得一个访问令牌,这是我将来使用我的rest api时唯一需要的东西。我定义了一个路由,在收到带有令牌的json后,我的浏览器被手动重定向到$ window.location。因此,当加载该页面时(对用户不可见,它太快而无法通知)我分析令牌,保存令牌,分析身份验证,当成功时我手动重定向到主页。