我有一个带有卫星发生器的 Angular 1.5.0-rc0 应用程序,以便登录到 facebook。
该网站连接到https://myalcoholist.com:8888的 nodejs 服务器
用 facebook 配置 satellizer 我有以下代码:
app.config(function($authProvider) {
$authProvider.facebook({
clientId: '226393057557099',
url: 'https://myalcoholist.com:8888/auth/facebook',
redirectUri: 'https://myalcoholist.com'
});
});
和我的角度登录控制器代码:
(function () {
angular.module('myalcoholist').controller('LoginController',['$scope','$auth','$location', 'toastr',function ($scope,$auth,$location,toastr) {
$scope.authenticate = function (provider) {
$auth.authenticate(provider).then(function () {
toastr.success('You have successfully signed in with ' + provider + '!');
$location.path('/');
})
.catch(function (error) {
if (error.error) {
// Popup error - invalid redirect_uri, pressed cancel button, etc.
toastr.error(error.error);
} else if (error.data) {
toastr.error(error.data.message, error.status);
} else {
toastr.error(error);
}
}
)
}
}]);
})();
我的 nodejs 应用程序使用 restify 框架来处理请求,我将其配置为路由:
server.post('/auth/:provider', function (req,res,next) {
require(post_commands_dir + 'auth.js')(req,res,next);
})
和 auth.js 包含
var FB = require('fb');
function auth(req, res, next) {
var clientId = req.params.clientId;
var code = req.params.code;
var provider = req.params.provider;
FB.api('oauth/access_token', {
client_id: '<CLIENT_ID>',
client_secret: '<CLIENT_SECRET>',
redirect_uri: 'https://myalcoholist.com',
code: code
}, function (response) {
if(!response || response.error) {
console.log(!response ? 'error occurred' : response.error);
return;
}
var accessToken = response.access_token;
res.send(JSON.stringify({token:accessToken}));
// var expires = response.expires ? response.expires : 0;
});
}
module.exports = auth;
在视图中的我的角度项目中,我有一个按钮,它调用我添加到范围的身份验证函数。当我点击登录时,它会打开一个 facebook 弹出窗口,然后我点击允许,然后它会关闭弹出窗口并在后台使用代码执行对https://myalcoholist.com:8888/auth/facebook的发布请求。当我尝试使用代码将代码转换为访问令牌时,auth.js
出现以下错误:
{ message: 'Error validating verification code. Please make sure your redirect_uri is identical to the one you used in the OAuth dialog request',
type: 'OAuthException',
code: 100,
fbtrace_id: 'B09qSPJS08d' }
现在在 facebook 控制台中,我将其配置Valid OAuth redirect URIs
为https://myalcoholist.com
现在我认为我可能误解了redirect_uri,我应该以不同的方式实现它。我只是不知道怎么做。有任何想法吗 ?