angularx-social-login icon indicating copy to clipboard operation
angularx-social-login copied to clipboard

Social login and authentication module for Angular 17

Results 81 angularx-social-login issues
Sort by recently updated
recently updated
newest added

Using version *1.2.5* and trying to upgrade existing Google login using a new mechanism. Here is my HTML implementation ```html ``` and `component.ts` ```typescript ngOnInit() { this.socialAuthService.authState.subscribe((user) => { this.getAccessToken();

Angular V16 upon opening Google login popup 2 error message posts on the console. ``` ``` ![Snag_544a0a45](https://github.com/abacritt/angularx-social-login/assets/82805446/e19e12be-3454-417b-a901-e0447376fd1a)

The Google login button suddenly disappeared, and I got an error while trying to subscribe to SocialAuthService. Did someone has ever faced this issue? ```typescript constructor(private authService: SocialAuthService) { this.authService.authState.subscribe((authState)...

wontfix

In Google authentication, I noticed that you do not provide "offline access type" functionality. Also, I noticed that at some point, the library allowed and provided offline access tokens, but...

wontfix

I think there must have been a change to the google API: ![image](https://github.com/abacritt/angularx-social-login/assets/129157/b0e50e80-9c63-44ff-b607-a9069dcf1b6a) ![image](https://github.com/abacritt/angularx-social-login/assets/129157/07008a19-2348-4704-8277-c6982caaeae8)

**Use Case:** As I'm introducing Google Sign In to our application, there could be bugs or issues present with the feature, so I'd like to introduce a feature flag for...

The user state is lost when I refresh the page. The user is logged out and is again required to complete the login flow. How to avoid this?

I'm trying to integrate sign in with gmail in angular 16 app, and able to get the userInfo using `this.authService.authState.subscribe((user) => { this.user = user; this.loggedIn = (user != null);...

Bumps [ejs](https://github.com/mde/ejs) from 3.1.9 to 3.1.10. Release notes Sourced from ejs's releases. v3.1.10 Version 3.1.10 Commits d3f807d Version 3.1.10 9ee26dd Mocha TDD e469741 Basic pollution protection 715e950 Merge pull request...

dependencies

I'm on 2.0.0 When I call socialAuthService.signOut(). The service's user property isn't cleared. Is that expected behavior? The reason I ask is because I have a login component that subscribes...