Just a simple script to curl to a website to take some data for my hobby project. In terminal it works perfectly but with php it doesnt work at all. I think it has to do with the cookies
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://www.pokemongomap.info/includes/mapdata.php");
curl_setopt($ch,CURLOPT_POST, true);
curl_setopt($ch,CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch,CURLOPT_POSTFIELDS, 'fromlat=52.352772543694165&tolat=52.353516320168715&fromlng=6.672205448722025&tolng=6.6761080628386935&fpoke=1&fgym=1');
curl_setopt($ch,CURLOPT_HTTPHEADER, array(
'Pragma: no-cache',
'Origin: http://www.pokemongomap.info',
'Accept-Encoding: gzip, deflate',
'Accept-Language: nl-NL,nl;q=0.8,en-US;q=0.6,en;q=0.4',
'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36',
'Content-Type: application/x-www-form-urlencoded; charset=UTF-8',
'Accept: application/json, text/javascript, */*; q=0.01',
'Cache-Control: no-cache',
'Cookie: PHPSESSID=5q2naanh8gj85utl2m96erjfa3; __atssc=reddit%3B1; cookieconsent_dismissed=yes; __atuvc=4%7C33%2C1%7C34; _ga=GA1.2.1355385211.1471162927; latlngzoom=19[##split##]52.35314443349598[##split##]6.674156755780354',
'X-Requested-With: XMLHttpRequest',
'Connection: keep-alive',
'Referer: http://www.pokemongomap.info/'
));
curl_setopt($ch, CURLOPT_VERBOSE, true);
$output = curl_exec($ch);
if ($output === FALSE) {
printf("cUrl error (#%d): %s<br>\n", curl_errno($ch),
htmlspecialchars(curl_error($ch)));
}
curl_close($ch);
var_dump($output);
returns string(145) "�]��� D���)j�Ûi�Ѡ+4����߅z����d紨)=qW�+G��Am~��f;c�6v��^�nG�u JF�ǜ ����{��T�.9�s����=m 9G���GFU��%�[�/��r3|l#�7��H�)�"
when using json_decode it returns NULL.