0

我有一个带有卫星发生器的 Angular 1.5.0-rc0 应用程序,以便登录到 facebook。

该网站连接到https://myalcoholist.com:8888的 nodejs 服务器

该网站是https://myalcoholist.com

用 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 URIshttps://myalcoholist.com

现在我认为我可能误解了redirect_uri,我应该以不同的方式实现它。我只是不知道怎么做。有任何想法吗 ?

4

1 回答 1

0

在 facebook 应用程序开发人员控制台中,当我添加https://myalcoholist.com到 OAuth 回调 URL 时,它会自动添加/到其中。这就是我在我的 API 服务器中所缺少的。api服务器中的redirect_url被配置为https://myalcoholist.com没有结尾/

welp 问题解决了。

于 2015-12-21T13:18:57.357 回答