From 6d49edfc2b8d5c24a035daf941f3e05fd671cda3 Mon Sep 17 00:00:00 2001 From: jade Date: Thu, 16 Jul 2026 09:19:32 +0900 Subject: [PATCH] =?UTF-8?q?=EC=88=98=EC=A0=95=20=EB=B2=84=EC=A0=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- axhub-gateway/src/main/resources/static/chat.html | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/axhub-gateway/src/main/resources/static/chat.html b/axhub-gateway/src/main/resources/static/chat.html index 3d4d15f..70eba4a 100644 --- a/axhub-gateway/src/main/resources/static/chat.html +++ b/axhub-gateway/src/main/resources/static/chat.html @@ -189,7 +189,10 @@ // 3. 백엔드 통신 (SSE Stream) const response = await fetch('/api/chat', { method: 'POST', - headers: { 'Content-Type': 'application/json' }, + headers: { + 'Content-Type': 'application/json', + 'X-Agent-Id': 'TESTER-DEV' // 권한 통과를 위한 테스트 Agent ID + }, body: JSON.stringify({ message: text }) });