Angularjs + Google oauth2 +获取id_token

时间:2016-06-23 08:34:36

标签: javascript angularjs oauth-2.0 google-authentication

我尝试在angualjs中实施google auth。 但我在javascript中研究并获取代码。

代码:

<html lang="en">
    <head>
        <meta name="google-signin-scope" content="profile email">
        <meta name="google-signin-client_id" content="148699057185-ug1ge86g4dn4uffffekth3rb7382cl2333323238fau.apps.googleusercontent.com">
        <script src="https://apis.google.com/js/platform.js" async defer></script>
    </head>
    <body>
        <div class="g-signin2" data-onsuccess="onSignIn" data-theme="dark"></div>
        <script>

            function onSignIn(googleUser) {
                // Useful data for your client-side scripts:
                var profile = googleUser.getBasicProfile();
                console.log("ID: " + profile.getId());
                // Don't send this directly to your server!
                console.log("Name: " + profile.getName());
                console.log("Image URL: " + profile.getImageUrl());
                console.log("Email: " + profile.getEmail());
                // The ID token you need to pass to your backend:
                var id_token = googleUser.getAuthResponse().id_token;
                console.log("ID Token: " + id_token);

                alert(id_token);

                // All HTML5 Rocks properties support CORS.

            }
        </script>
    </body>
</html>

我正在警告id_token。

但我需要转换为angularjs。

我试图实现angularjs但它不起作用。

请有人帮助我。

期待:我需要从angularjs中的google oauth获取id_token(不是访问令牌)。

1 个答案:

答案 0 :(得分:1)

我认为你应该尝试angular-google-plus模块。它是一个完整的角度模块,使用Google+ API处理登录。

这是DEMO(不要忘记在代码中插入您的客户ID。)

使用示例:

var app = angular.module('app', ['googleplus']);

app.config(['GooglePlusProvider', function(GooglePlusProvider) {
     GooglePlusProvider.init({
        clientId: 'YOUR_CLIENT_ID',
        apiKey: 'YOUR_API_KEY'
     });
}]);

app.controller('AuthCtrl', ['$scope', 'GooglePlus', function ($scope, GooglePlus) {
    $scope.login = function () {
        GooglePlus.login().then(function (authResult) {
            console.log(authResult);

            GooglePlus.getUser().then(function (user) {
                console.log(user);
            });
        }, function (err) {
            console.log(err);
        });
    };
}]);

我认为authResult对象应包含您想要的内容。