mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 10:30:55 +01:00
Handle trailing slashes for API routes and such as well
This commit is contained in:
parent
932511f769
commit
83257b4870
2 changed files with 5 additions and 0 deletions
|
@ -8,9 +8,12 @@ export const api = new Hono();
|
|||
|
||||
/* Current v1 API endpoints. Currently, these still go through the Twitter embed requests. API v2+ won't do this. */
|
||||
api.get('/status/:id/:language?', statusRequest);
|
||||
api.get('/status/:id/:language?/', statusRequest);
|
||||
api.get('/:handle/status/:id/:language?', statusRequest);
|
||||
api.get('/:handle/status/:id/:language?/', statusRequest);
|
||||
api.get('/robots.txt', async c => c.text(Strings.ROBOTS_TXT_API));
|
||||
|
||||
api.get('/:handle', profileRequest);
|
||||
api.get('/:handle/', profileRequest);
|
||||
|
||||
api.get('/', async c => c.redirect(Constants.API_DOCS_URL, 302));
|
|
@ -55,6 +55,7 @@ twitter.get(
|
|||
tweetRequest
|
||||
);
|
||||
|
||||
twitter.get('/version/', versionRoute);
|
||||
twitter.get('/version', versionRoute);
|
||||
twitter.get('/set_base_redirect', setRedirectRequest);
|
||||
twitter.get('/owoembed', oembed);
|
||||
|
@ -64,6 +65,7 @@ twitter.get('/robots.txt', async c => c.text(Strings.ROBOTS_TXT));
|
|||
twitter.get('/i/events/:id', genericTwitterRedirect);
|
||||
twitter.get('/hashtag/:hashtag', genericTwitterRedirect);
|
||||
|
||||
twitter.get('/:handle/', _profileRequest);
|
||||
twitter.get('/:handle', _profileRequest);
|
||||
|
||||
twitter.all('*', async c => c.redirect(Constants.REDIRECT_URL, 302));
|
||||
|
|
Loading…
Add table
Reference in a new issue