trevorhobenshield / twitter-api-client

Implementation of X/Twitter v1, v2, and GraphQL APIs
https://pypi.org/project/twitter-api-client
MIT License
1.56k stars 207 forks source link

Proxy error when using scrapper #192

Closed zekhoi closed 6 months ago

zekhoi commented 6 months ago
os.environ["https_proxy"] = args.proxy_url
os.environ["HTTPS_PROXY"] = args.proxy_url
scraper = Scraper(cookies={"ct0": args.ct0, "auth_token": args.auth_token})
scraper.save = False
users = scraper.users(screen_names=[args.username])

Anyone know why i am getting this error now, previously it works and no issues Error 590 UPSTREAM451 from httpx, other action like follow works, it only happen at scraper

how to fix it?