From dcb0274de7858467a33305bd2495dd3082f778ca Mon Sep 17 00:00:00 2001 From: posimai Date: Fri, 10 Apr 2026 18:06:47 +0900 Subject: [PATCH] fix: add Authorization header to POST /api/feed request --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 2076e49..d011fd4 100644 --- a/index.html +++ b/index.html @@ -993,7 +993,7 @@ async function loadFeed() { res = await fetch(FEED_API, { method: 'POST', cache: 'no-store', - headers: { 'Content-Type': 'application/json' }, + headers: { 'Content-Type': 'application/json', 'Authorization': `Bearer ${apiKey}` }, body: JSON.stringify({ customFeeds }), }); } else {