Oauth & Docker
Spring Boot: Dockerization Oauth https://speakerdeck.com/championswimmer/authentication-done-right-consuming-and-serving-oauth2-dot-0?slide=21 Identification -> Identifying the request uniquely(saying I am Venkat) Authentication -> registered identity(Proving with ID card) Authorization -> permission to resources(giving car key to another person) HTTP error 401 -> not authenticated 403 -> authenticated but NOT authorized Authentication via Authorization Services that don't save password. Rather it accepts/saves only phone and sends OTP. Service/app is authorized to read sms/email. Given I am authorized to read sms/email which indirect way of authentication. Single signon First party sso Google sites with google authenticator Third party sso Spotify using google authenticator Oauth client/apps sends request to github(oauth provider) with client id & request uri oauth provider shows UI to end user to provide login page user authenticates & accepts the authoriz...