我有一个带有卫星的角度1.5.0-rc0应用程序才能登录facebook。
网站连接到https://myalcoholist.com:8888
的nodejs服务器使用facebook配置卫星我有以下代码:
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有误,我应该以不同的方式实现它。我只是不知道如何。任何想法?