Corrected FB Login Example
This commit is contained in:
parent
11052bbb6f
commit
e24fd7b64e
|
@ -301,8 +301,9 @@ LoginManager
|
||||||
}
|
}
|
||||||
console.log(`Login success with permissions: ${result.grantedPermissions.toString()}`);
|
console.log(`Login success with permissions: ${result.grantedPermissions.toString()}`);
|
||||||
// get the access token
|
// get the access token
|
||||||
const data = AccessToken.getCurrentAccessToken();
|
return AccessToken.getCurrentAccessToken();
|
||||||
|
})
|
||||||
|
.then(data => {
|
||||||
// create a new firebase credential with the token
|
// create a new firebase credential with the token
|
||||||
const credential = firebase.auth.FacebookAuthProvider.credential(data.accessToken);
|
const credential = firebase.auth.FacebookAuthProvider.credential(data.accessToken);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue