Not exactly sure what I am doing wrong here, I have looked at other forum post and this is what they say to do to re-auth a user. But I am getting an error of:
TypeError: Cannot read property 'credential' of undefined
on this line here:
const credentials = fire.auth.EmailAuthProvider.credential(currentUser.email, user.currentPass);
Here is the code:
const currentUser = fire.auth().currentUser;
const credentials = fire.auth.EmailAuthProvider.credential(currentUser.email, user.currentPass);
currentUser
.reauthenticateWithCredential(credentials)
.then(() => {
alert('Success');
})
.catch(err => {
alert(err);
});
Like @bojeil answered, it's a namespace so, for instance and if you're using typescript and you used firebase.initializeApp(config);
in another class, just add again the import in the class where you user the credential method with import * as Firebase from 'firebase/app';
As u can see in the doc credential
it's a static method in a static class that's why you need the namespace.
You've imported firebase in the wrong way. Here is what it says in the document. Official Document
const firebase = require('firebase');
const cred = firebase.auth.EmailAuthProvider.credential(
email,
password
);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With