Event: "signedIn"

This event is emitted when the current user has finished signing in.

Properties

PropertyTypeDescription
authObjectAuthentication details
userObjectPartial User with some fields missing
Auth
PropertyTypeDescription
keystringAn authentication key
secretstringAn authentication secret
resourcestringThe generated resource token

Examples

client.on('signedIn', function(user, auth) {
console.log(user.displayName, 'signed in');
});