Using the python request module, i am unable to get any results other than a 502 bad gateway.
Using the same URL in curl returns results but never in the request module.
curl -X GET "http://archive.4plebs.org/_/api/chan/thread/?board=plebs&num=1" this will return the thread
where requests.post("http://archive.4plebs.org/_/api/chan/thread/?board=plebs&num=1") will return 502.
i also tried requests.get("http://archive.4plebs.org/_/api/chan/thread/?board=plebs&num=1") which also returns 502.
Any idea as to what may be causing this?