From: Antonio Ospite Date: Tue, 9 Jun 2020 22:28:54 +0000 (+0200) Subject: src/Tweeper.php: only override the User-Agent to a mobile one for twitter.com X-Git-Tag: v1.4.2~2 X-Git-Url: https://git.ao2.it/tweeper.git/commitdiff_plain/b922824bc561f7f3e31c6f9962d96e9084497ced?hp=b922824bc561f7f3e31c6f9962d96e9084497ced src/Tweeper.php: only override the User-Agent to a mobile one for twitter.com Using a mobile User-Agent made it possible to scrape twitter.com again but it also had side effects: it was forcing facebook.com to serve the mobile version too. However tweeper expected the desktop version of facebook.com so this was breaking support for facebook.com Scraping the mobile version of facebook.com would be inconvenient because the xsl would have to be rewritten extensively, and also the date of posts is not readily available as a timestamp in the mobile version. So override the User-Agent for twitter.com only, this makes the code a little uglier but it works well enough for now. ---