Return JSON error for blank user agents

This commit is contained in:
dangered wolf 2023-11-18 20:14:57 -05:00
parent e39549d770
commit 8a31b54c65
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -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();
});