It seems to work fine using cloudscraper instead of httpx
Just changed and added this :
scraper = cloudscraper.create_scraper(
browser={
'browser': 'chrome',
'platform': 'android',
'desktop': False
}
)
r = scraper.get(url, params=params, headers=headers)
It seems to work fine using cloudscraper instead of httpx
Just changed and added this :