1

这是我的代码。我正在使用authenticate('google'). 单击允许按钮后,我收到错误 404。我正在使用satellizer.js进行谷歌身份验证。

如果您理解此错误,请帮助我。

浏览器错误 POST http://localhost:8080/auth/google 404(未找到)

Object {data: "Cannot POST /auth/google↵", status: 404, config: Object, statusText: "Not Found"}

内部控制器

 $scope.authenticate = function (provider) {
            $auth.link(provider)
                .then(function(response) {
                    // You have successfully linked an account.
                    console.log(response);
                })
                .catch(function(response) {
                    // Handle errors here.
                    console.log('----------error--------')
                    console.log(response);
                });
        };

我在 app.js 中的代码

$authProvider.google({
            clientId: 'xxxxxxxxxx2op4madn.apps.googleusercontent.com'
        });

        $authProvider.google({
            url: '/auth/google',
            authorizationEndpoint: 'https://accounts.google.com/o/oauth2/auth',
            redirectUri: window.location.origin || window.location.protocol + '//' + window.location.host,
            requiredUrlParams: ['scope'],
            optionalUrlParams: ['display'],
            scope: ['profile', 'email'],
            scopePrefix: 'openid',
            scopeDelimiter: ' ',
            display: 'popup',
            type: '2.0',
            popupOptions: {width: 452, height: 633}
        });
4

1 回答 1

1

我实际上遇到了问题,它在该 URL 上找到了一个发布请求,您可以在server.js文件中添加一些配置,遵循这个给定的 GIT-URL。

github卫星器

于 2015-12-22T11:55:51.337 回答