Firebase login

hi ,enabling authentication using firebase , but am getting this strange error

image

this is my factory

 .factory('Auth', function($firebaseAuth) {
     var usersRef = new Firebase('https://**url***.firebaseio.com');
      return $firebaseAuth(usersRef);
   })

and in the controller

Auth.$authWithOAuthRedirect('facebook').then(function(authData) {............
Auth.$onAuth(function(authData) {.....
1 Like

In the Facebook developers portal make sure that you’ve set the setting “Do you want to make this app and all its live features available to the general public?” to YES. The setting is found in the Status & Review section.

1 Like

thanks , if anyone is facing the problem , u must also enter a valid email address , otherwise the turn on for public would be disable