I'm trying to send specific HTTP Headers to a website using cURL and PHP.
When I analyze the network with FireBug when I click in a link of this site, I see all POST and GET methods that invokes this link. Here there are the headers.
Respond Headers:
Connection Keep-Alive
Content-Encoding gzip
Content-Length 20
Content-Type text/html; charset=utf-8
Date Mon, 31 Dec 2012 12:55:57 GMT
Keep-Alive timeout=5, max=100
Location http://www.example.com/a/b/11111
Server Apache/2.2.22
Vary Accept-Encoding
X-Powered-By PHP/5.3.10-1ubuntu3.4
Request Headers:
Accept text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Encoding gzip, deflate
Accept-Language es-ES,es;q=0.8,en-US;q=0.5,en;q=0.3
Connection keep-alive
Cookie referee_id=number;authautologin=number;session=number;uber_video=number
DNT 1
Host www.example.com
Referer http://www.referersite.com
User-Agent Mozilla/5.0 (Windows NT 6.1;WOW64;rv:17.0) Gecko/17.0 Firefox/17.0
Data response headers sent
Content-Length 6
Content-Type application/x-www-form-urlencoded
Then, in FireBug there's the option to send another time the method you want in a new tab. It sends it and it appears as I had clicked the link, but really I haven't clicked, I used HTTP Headers. What I want it's to do this but using cURL. Here you have the option I'm saying: http://img5.imageshack.us/img5/3841/sinttulodho.png (Abrir en nueva pestaƱa = Open in new tab)
So here is my try:
<?
$url = 'http://www.example.com/a/b/1?c=1';
function disguise_curl($url) {
$curl = curl_init();
$header[] = "Accept:text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8";
$header[] = "Cache-Control: max-age=0";
$header[] = "Connection: keep-alive";
$header[] = "Keep-Alive:timeout=5, max=100";
$header[] = "Accept-Charset:ISO-8859-1,utf-8;q=0.7,*;q=0.3";
$header[] = "Accept-Language:es-ES,es;q=0.8";
$header[] = "Pragma: ";
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/23.0.1271.97 Safari/537.11');
curl_setopt($curl, CURLOPT_HTTPHEADER, $header);
curl_setopt($curl, CURLOPT_REFERER, 'http://www.referersite.com');
curl_setopt($curl, CURLOPT_ENCODING, 'gzip,deflate,sdch');
curl_setopt($curl, CURLOPT_AUTOREFERER, true);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_TIMEOUT, 10);
$html = curl_exec($curl);
curl_close($curl);
}
echo disguise_curl($url);
?>
I don't get it to work. Any other ways to to use HTTP Headers or something wrong in the code?
