From 219eacf1fc6ede44030ae17da84acd3ab0ebb940 Mon Sep 17 00:00:00 2001 From: "Ilya V. Logounov" Date: Thu, 5 Mar 2020 14:16:36 +0300 Subject: [PATCH] Fix README.md: authenticated_credential (#39) Replace authenticated_consumer with authenticated_credential (#39) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 82a65bf2..d814d486 100644 --- a/README.md +++ b/README.md @@ -37,9 +37,9 @@ The `X-Userinfo` header contains the payload from the Userinfo Endpoint X-Userinfo: {"preferred_username":"alice","id":"60f65308-3510-40ca-83f0-e9c0151cc680","sub":"60f65308-3510-40ca-83f0-e9c0151cc680"} ``` -The plugin also sets the `ngx.ctx.authenticated_consumer` variable, which can be using in other Kong plugins: +The plugin also sets the `ngx.ctx.authenticated_credential` variable, which can be using in other Kong plugins: ``` -ngx.ctx.authenticated_consumer = { +ngx.ctx.authenticated_credential = { id = "60f65308-3510-40ca-83f0-e9c0151cc680", -- sub field from Userinfo username = "alice" -- preferred_username from Userinfo }