mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 18:40:56 +01:00
Return JSON error for blank user agents
This commit is contained in:
parent
e39549d770
commit
8a31b54c65
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@ export const api = new Hono();
|
||||||
api.use('*', async (c, next) => {
|
api.use('*', async (c, next) => {
|
||||||
if (!c.req.header('user-agent')) {
|
if (!c.req.header('user-agent')) {
|
||||||
c.status(401);
|
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();
|
await next();
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Reference in a new issue