Amplify has re-imagined the way frontend developers build fullstack applications. Develop and deploy without the hassle.

Page updated Apr 29, 2024

Listen to auth events

AWS Cognito Auth Plugin sends important events through Amplify Hub.

Amplify iOS v1 is deprecated as of June 1st, 2024. No new features or bug fixes will be added. Dependencies may become outdated and potentially introduce compatibility issues.

Please use the latest version (v2) of Amplify Library for Swift to get started. Refer to the upgrade guide for instructions on upgrading your application to the latest version.

Amplify libraries should be used for all new cloud connected applications. If you are currently using the AWS Mobile SDK for iOS, you can access the documentation here.

override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view.
// Assumes `unsubscribeToken` is declared as an instance variable in your view
unsubscribeToken = Amplify.Hub.listen(to: .auth) { payload in
switch payload.eventName {
case HubPayload.EventName.Auth.signedIn:
print("User signed in")
// Update UI
case HubPayload.EventName.Auth.sessionExpired:
print("Session expired")
// Re-authenticate the user
case HubPayload.EventName.Auth.signedOut:
print("User signed out")
// Update UI
case HubPayload.EventName.Auth.userDeleted:
print("User deleted")
// Update UI
default:
break
}
}
}
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view.
// Assumes `sink` is declared as an instance variable in your view controller
sink = Amplify.Hub
.publisher(for: .auth)
.sink { payload in
switch payload.eventName {
case HubPayload.EventName.Auth.signedIn:
print("User signed in")
// Update UI
case HubPayload.EventName.Auth.sessionExpired:
print("Session expired")
// Re-authenticate the user
case HubPayload.EventName.Auth.signedOut:
print("User signed out")
// Update UI
case HubPayload.EventName.Auth.userDeleted:
print("User deleted")
// Update UI
default:
break
}
}
}