• 06-11-2012, 11:54:47
    #1
    Google play dan veri almaya çalışıyorum ama ne curl ne de file_get_contents işe yaradı, tavsiye edebileceğiniz bir yol var mı ?
  • 06-11-2012, 11:55:49
    #2
    Kimlik 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:56
    #3
    Cappystarj0e adlı üyeden alıntı: mesajı görüntüle
    agent olarak android gönderiyor musun? normal browser bağlantısı kurduğun için olmuyor olabilir. cep telefonu gibi bağlantı kurmayı deneyebilirsin.
    bunu nasıl yapabilirim ?
  • 06-11-2012, 11:57:11
    #4
    Üyeliği durduruldu
    agent : Android yada googlebot yap dene istersen
  • 06-11-2012, 12:03:36
    #5
    Cappystarj0e adlı üyeden alıntı: mesajı görüntüle
    agent olarak android gönderiyor musun? normal browser bağlantısı kurduğun için olmuyor olabilir. cep telefonu gibi bağlantı kurmayı deneyebilirsin.
    EskiMynetim adlı üyeden alıntı: mesajı görüntüle
    agent : Android yada googlebot yap dene istersen
    $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
    #6
        $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);
  • 06-11-2012, 16:06:50
    #7
    SetSql 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); 
        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
        $data = curl_exec ($ch); 
        curl_close ($ch);
    teşekkürler