From 8a31b54c65490e1b5c613f49e3db8d1dfa505213 Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Sat, 18 Nov 2023 20:14:57 -0500 Subject: [PATCH] Return JSON error for blank user agents --- src/realms/api/router.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/realms/api/router.ts b/src/realms/api/router.ts index 71b29e9..42035c7 100644 --- a/src/realms/api/router.ts +++ b/src/realms/api/router.ts @@ -9,7 +9,7 @@ export const api = new Hono(); api.use('*', async (c, next) => { if (!c.req.header('user-agent')) { c.status(401); - return c.text('You must identify yourself with a User-Agent header in order to use the FixTweet API. We recommend using a descriptive User-Agent header to identify your app, such as "MyAwesomeBot/1.0 (+http://example.com/myawesomebot)". We don\'t track or save what kinds of data you are pulling, but you may be blocked if you send too many requests from an unidentifiable user agent.'); + return c.json({"error":"You must identify yourself with a User-Agent header in order to use the FixTweet API. We recommend using a descriptive User-Agent header to identify your app, such as 'MyAwesomeBot/1.0 (+http://example.com/myawesomebot)'. We don\'t track or save what kinds of data you are pulling, but you may be blocked if you send too many requests from an unidentifiable user agent."}); } await next(); });