# HG changeset patch # User Kim Alvefur # Date 1689892164 -7200 # Node ID a9682cad0e672743c5486a639c66ded1f6ed7839 # Parent 2e30af180da5116473d59ff0b888c0769ad9a269 mod_http_oauth2: Mention Device flow in list of flows in README diff -r 2e30af180da5 -r a9682cad0e67 mod_http_oauth2/README.markdown --- a/mod_http_oauth2/README.markdown Thu Jul 20 10:38:33 2023 +0200 +++ b/mod_http_oauth2/README.markdown Fri Jul 21 00:29:24 2023 +0200 @@ -212,6 +212,7 @@ ### Supported flows - Authorization Code grant, optionally with Proof Key for Code Exchange +- Device Authorization Grant - Resource owner password grant - Implicit flow *(disabled by default)* - Refresh Token grants @@ -223,6 +224,7 @@ -- These examples reflect the defaults allowed_oauth2_grant_types = { "authorization_code"; -- authorization code grant + "urn:ietf:params:oauth:grant-type:device_code"; "password"; -- resource owner password grant }