Software /
code /
prosody-modules
Changeset
5620:a9682cad0e67
mod_http_oauth2: Mention Device flow in list of flows in README
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Fri, 21 Jul 2023 00:29:24 +0200 |
parents | 5619:2e30af180da5 |
children | 5621:7565298aa197 |
files | mod_http_oauth2/README.markdown |
diffstat | 1 files changed, 2 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- 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 }