Google Play dan veri almak
6
●609
- 06-11-2012, 11:55:49Kimlik doğrulama veya yönetimden onay bekliyor.agent olarak android gönderiyor musun? normal browser bağlantısı kurduğun için olmuyor olabilir. cep telefonu gibi bağlantı kurmayı deneyebilirsin.
- 06-11-2012, 11:56:56bunu nasıl yapabilirim ?Cappystarj0e adlı üyeden alıntı: mesajı görüntüle
- 06-11-2012, 11:57:11Üyeliği durdurulduagent : Android yada googlebot yap dene istersen
- 06-11-2012, 12:03:36Cappystarj0e adlı üyeden alıntı: mesajı görüntüleEskiMynetim adlı üyeden alıntı: mesajı görüntüle
$ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); $userAgent = 'Googlebot/2.1 (http://www.googlebot.com/bot.html)'; curl_setopt($ch, CURLOPT_USERAGENT, $userAgent); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1); $data = curl_exec ($ch); curl_close ($ch);
bunu kullanıyorum ama olmadı, https bağlantı olduğundan olabilir mi acaba ? - 06-11-2012, 14:29:29
$ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); $userAgent = 'Googlebot/2.1 (http://www.googlebot.com/bot.html)'; curl_setopt($ch, CURLOPT_USERAGENT, $userAgent); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); $data = curl_exec ($ch); curl_close ($ch);