Completed
The general idea behind connecting an app to Auth0
Class Central Classrooms beta
YouTube videos curated by Class Central.
Classroom Contents
Getting Started with Android Authentication Using Kotlin
Automatically move to the next video in the Classroom when playback concludes
- 1 Introduction
- 2 What you'll build
- 3 Download and run the starter project
- 4 The general idea behind connecting an app to Auth0
- 5 How to sign up for a free Auth0 account
- 6 Accordion break!
- 7 Register the app in the Auth0 dashboard
- 8 Add info to the app so it can communicate with Auth0
- 9 Add info to Auth0 so that it can communicate with the app
- 10 Add the Auth0 libraries and other info to build.gradle
- 11 Give the app permission to access the internet
- 12 Add import statments and properties to the main activity
- 13 Initialize the main activity
- 14 Implement the login method
- 15 Implement the logout method
- 16 Implement the updateUI method
- 17 Run the app
- 18 Next step: Display info about the logged-in user
- 19 A closer look at the ID token
- 20 Extract user info from the ID token with the User class
- 21 Get the user info from the User class and display it onscreen
- 22 Run the app again
- 23 Conclusion