这是我的代码。我正在使用authenticate('google')
。点击允许按钮后,我得到错误404 。
我正在使用 satellizer.js 进行Google身份验证。
如果您了解此错误,请帮助我。
浏览器出错 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}
});
答案 0 :(得分:1)
我遇到了问题,实际上它在该URL上发现了一个帖子请求,您可以在server.js
文件中添加一些配置,按照给定的GIT-URL。