add user-agent to most requests and update other user agents

This commit is contained in:
2023-12-27 14:49:17 -05:00
parent 0109509996
commit c33a109f48
2 changed files with 4 additions and 3 deletions

View File

@ -15,6 +15,7 @@
if ($data)
$url = sprintf("%s?%s", $url, http_build_query($data));
}
curl_setopt($curl, CURLOPT_HEADER, "User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/120.0");
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);