- OAuth 2.0 — an authorization framework. It lets an app get a token to act on your behalf (e.g. "read my calendar"), without ever seeing your password. It says nothing about who you are.
- OpenID / OpenID 2.0 — an older, separate authentication protocol (login only, no API access). Mostly dead now, replaced by OIDC.
- OpenID Connect (OIDC) — an identity layer built on top of OAuth 2.0. It adds an ID token (a signed JWT saying who the user is) alongside OAuth's access token (which grants API access). This is why almost every "Login with Google/Microsoft/etc." today is OIDC, not old OpenID.
OIDC = OAuth 2.0 + a standard way to authenticate.