gpt4 book ai didi

javascript - 谷歌oauth卫星404错误

转载 作者:行者123 更新时间:2023-11-27 23:34:17 24 4
gpt4 key购买 nike

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

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

Error in browser POST http://localhost:8080/auth/google 404 (Not Found)

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

Inside controller

 $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);
});
};

My code inside 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}
});

最佳答案

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

github satellizer

关于javascript - 谷歌oauth卫星404错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34264575/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com