Kapma Twitter Arkadaşlar PHP ve cURL kullanarak Yem

0 Cevap php

Yani benim son soru ile tutarak, ben arkadaş heyecan beslemek kazıma üzerinde çalışıyorum. Ben bu script yazılı almak için bir öğretici, adım oldukça fazla adım takip, bu yüzden sorunun ne olduğunu gerçekten emin değilim, ve ben herhangi bir hata iletileri göremiyorum. Ben gerçekten cURL önce kabuğundan kurtarmak hiç kullanmadım, ve ben bu yüzden lütfen bana ayı PHP son derece yeni.

<html>
<head>
<title>Twitcap</title>
</head>
<body>
<?php
  function twitcap()
  {
    // Set your username and password
    $user = 'osoleve';
    $pass = '****';

    // Set site in handler for cURL to download
    $ch = curl_init("https://twitter.com/statuses/friends_timeline.xml");

    // Set cURL's option
    curl_setopt($ch,CURLOPT_HEADER,1); // We want to see the header
    curl_setopt($ch,CURLOPT_TIMEOUT,30); // Set timeout to 30s
    curl_setopt($ch,CURLOPT_USERPWD,$user.':'.$pass); // Set uname/pass
    curl_setopt($ch,CURLOPT_RETURNTRANSER,1); // Do not send to screen

    // For debugging purposes, comment when finished
    curl_setopt($ch,CURLOPT_SSL_VERIFYPEER,0);
    curl_setopt($ch,CURLOPT_SSL_VERIFYHOST,0);

    // Execute the cURL command
    $result = curl_exec($ch);

    // Remove the header
    // We only want everything after <?
    $data = strstr($result, '<?');

    // Return the data
    $xml = new SimpleXMLElement($data);
    return $xml;
  }

  $xml = twitcap();
  echo $xml->status[0]->text;
?>
</body>
</html>

0 Cevap