Open RalphORama opened 11 months ago
Fixing these would require using curl (or libcurl or w/e) to check if the location header in the request to vxreddit is a site other than reddit.com
curl
location
vxreddit
reddit.com
Example (shell):
curl -v https://vxreddit.com/r/nfl/s/klVXoLSTdX 2>&1 | grep -i location #< location: https://twitter.com/kahuna_med/status/1741580123327869157?s=46&t=m2SMNFb9k8aBi4agkkqcQA
Looks like we can handle redirects within Node.js using follow-redirects
follow-redirects
Fixing these would require using
curl
(or libcurl or w/e) to check if thelocation
header in the request tovxreddit
is a site other thanreddit.com
Example (shell):