成功验证后,卫星redirectUri无法正常工作

时间:2016-08-15 12:12:39

标签: angularjs facebook-authentication satellizer

我已经使用角度js为后端实现了facebook认证,但是其他一切工作正常,从facebook获取令牌但是卫星在成功时不会重定向到redirectUri。

下面是我的代码

       $authProvider.facebook({
        clientId:'xxxxxxx',
        url: config.api.protocol + '://' + config.api.host + config.api.path + 'auth/facebook',
        redirectUri: window.location.origin + '/dashboard/home'
       })

1 个答案:

答案 0 :(得分:-1)

您应该提供重定向URI,如下所示 redirectUri:'http://localhost:3000/'

它适用于我