Auth stopped working after updating to latest dependencies
See original GitHub issueThis used to work fine but stopped working after updating dependencies. Currently I’m investigating what causes the problem, but here’s what I get: video here http://recordit.co/vMDm8Wj3Y8
The error (signInWithCredential failed: First argument "credential" must be a valid credential.
) happens for both AccountChooser
and OneTap
CredentialHelpers.
My set up is pretty simple:
export const firebaseUiAuthConfig: FirebaseUIAuthConfig = {
providers: [
// googleCustomConfig,
AuthProvider.Google,
AuthProvider.Facebook,
AuthProvider.Password,
AuthProvider.Phone
],
method: AuthMethods.Popup,
credentialHelper: CredentialHelper.AccountChooser
};
....
FirebaseUIModule.forRoot(firebaseUiAuthConfig),
and dependencies:
"dependencies": {
...
"@angular/common": "^5.2.6",
"@angular/compiler": "^5.2.6",
"@angular/core": "^5.2.6",
...
"angularfire2": "^5.0.0-rc.6",
"firebase": "^4.10.1",
"firebaseui": "^2.6.1",
"firebaseui-angular": "^2.6.1",
...
},
Does anyone have something similar?
Issue Analytics
- State:
- Created 6 years ago
- Comments:9 (4 by maintainers)
Top Results From Across the Web
Flutter dependencies problems after upgrade - Stack Overflow
The best way would be just remove the version from the dependencies which are causing error. And then run pub get it will...
Read more >JwtService stopped working after upgrading dependencies #63
I've installed new project with NestJS 6 and If I put JwtModule in separate AuthModule and after I import in other module I...
Read more >OWA or ECP stops working after you install a security update
OWA/ECP stops working after a security update is manually installed on Exchange server without elevated permissions.
Read more >Troubleshooting common Maven issues | IntelliJ IDEA ...
You can try to restart IntelliJ IDEA and update Maven repositories. Update Maven repositories. In the Settings/Preferences ...
Read more >Problem: Unable to resolve dependencies of NuGet packages
When you upgrade the site by installing Telerik. ... Unable to resolve dependencies. ... Authentication 10.0.6421' is not compatible with 'Telerik.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I can confirm that the downgrading to the following versions fix the issue:
@RaphaelJenni It looks like the bug occurs after firebaseui 2.5.1.
@matiishyn note that I can use firebase 4.10.1.
Installed the newest versions. No errors for me anymore. Can you verify if the problem is solved?
Dependencies of the sample project: