Firebaseui使用社交媒体登录时没有响应

时间:2018-01-03 07:05:14

标签: typescript firebase firebase-authentication firebaseui

我尝试将firebaseUi集成到我的应用程序中。当用户使用任何社交媒体登录时,系统在auth状态更改后没有给我答案或数据。我只看到下面的查询进度条。

enter image description here

def file = 'Sports\\Badminton\\Players\\Saina.txt'

}

控制台没有给我写任何东西。但是当我使用

async ngOnInit() {
  // reset login status
  this.authenticationService.logout();
  // get return url from route parameters or default to '/home'
  this.returnUrl = this.route.snapshot.queryParams['returnUrl'] || '/home';
  await firebase.auth().signOut();

  firebase.auth().onAuthStateChanged(data => {
  console.log(data);
  this.signUpWithSocialIcon(data);
});

我得到了回复并成功登录。

我的package.json是

firebase.auth().signInWithEmailAndPassword

0 个答案:

没有答案