Remove undocumented .json endpoint

This commit is contained in:
dangered wolf 2023-11-10 05:36:13 -05:00
parent 3d536aa5f1
commit c937f8543b
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -80,12 +80,7 @@ export const statusRequest = async (c: Context) => {
const baseUrl = getBaseRedirectUrl(c);
/* Check if request is to api.fxtwitter.com, or the tweet is appended with .json
Note that unlike TwitFix, FixTweet will never generate embeds for .json, and
in fact we only support .json because it's what people using TwitFix API would
be used to. */
if (
url.pathname.match(/\/status(es)?\/\d{2,20}\.(json)/g) !== null ||
Constants.API_HOST_LIST.includes(url.hostname)
) {
console.log('JSON API request');