Event: "signedIn"
This event is emitted when the current user has finished signing in.
Properties
Property | Type | Description |
---|---|---|
auth | Object | Authentication details |
user | Object | Partial User with some fields missing |
Auth
Property | Type | Description |
---|---|---|
key | string | An authentication key |
secret | string | An authentication secret |
resource | string | The generated resource token |
Examples
client.on('signedIn', function(user, auth) {console.log(user.displayName, 'signed in');});