From 9e7c20644c9130d91c5681ed9474bb02bb170783 Mon Sep 17 00:00:00 2001 From: Andes Van Lancker <148441344+andesvl-asml@users.noreply.github.com> Date: Tue, 9 Jul 2024 18:30:03 +0200 Subject: [PATCH] Update oauth2-device-authorization-grant.md fix wrong endpoint url device/auth <-> auth/device Signed-off-by: Andes Van Lancker <148441344+andesvl-asml@users.noreply.github.com> --- design/oauth2-device-authorization-grant.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/design/oauth2-device-authorization-grant.md b/design/oauth2-device-authorization-grant.md index f8b73757..0d93a2f7 100644 --- a/design/oauth2-device-authorization-grant.md +++ b/design/oauth2-device-authorization-grant.md @@ -99,7 +99,7 @@ Send POST request to the `Device Authorization Endpoint` like below. ``` curl -X POST \ -d "client_id=foo" \ - "http://localhost:8080/realms/test/protocol/openid-connect/device/auth" + "http://localhost:8080/realms/test/protocol/openid-connect/auth/device" ``` It returns a response like below.