ruby-on-rails-3
  • devise
  • satellizer
  • 2015-01-26 151 views 0 likes 
    0

    我正在使用rails和angular來構建一個應用程序。我正在使用衛星在應用程序中登錄。衛星和Facebook登錄

    這裏是我的色器件配置:

    config.omniauth :facebook, "xxx1", "secret", :strategy_class => OmniAuth::Strategies::Facebook 
    

    在JS方面:

    $authProvider.loginUrl = '/users/sign_in'; 
        $authProvider.facebook({clientId: 'xxx1', url: '/users/auth/facebook', type: '2.0'}); 
    

    當我選擇用FB一個彈出窗口登錄,然後我進行身份驗證,並finaly時彈出接近我得到這個錯誤:

    XMLHttpRequest cannot load https://graph.facebook.com/oauth/authorize?response_type=code&client_id=804…allback&state=c2131db90c6208181da224094bc2043ac43be5507bc2be8a&scope=email. A wildcard '*' cannot be used in the 'Access-Control-Allow-Origin' header when the credentials flag is true. Origin 'http://localhost:3000' is therefore not allowed access. 
    

    你有什麼想法嗎?

    在此先感謝。

    問候,

    回答

    1

    您可以通過設置

    $authProvider.withCredentials = false; 
    

    更多細節將其關閉證書標誌: https://github.com/sahat/satellizer/releases/tag/0.9.1

    相關問題