我在Angular 2中使用google邮件提示符,当前正在使用angular2-social-login NPM。 在这里google邮件提示第一次打开,第二次未打开google mail登录提示。
<button class="btn gmailBtn" (click)="signIn('google')" type="button">Login with Gmail</button>
<button class="btn gmailBtn" (click)="logout()" type="button">Log OUT</button>
import { AuthService } from "angular2-social-login";
constructor(private _auth: AuthService) { }
signIn(provider: any) {
this.sub = this._auth.login(provider).subscribe(
(data) => {
this.user = data;
}
);
}
logout() {
this._auth.logout().subscribe(
(data) => {
this.user = null;
}
)
}
Google Gmail无法再次打开并显示较旧的提取数据。