Образец твиттерного приложения - PullRequest
0 голосов
/ 25 марта 2010
<?php 
function updateTwitter($status)
{ 
    // Twitter login information 
    $username = 'xxxxx'; 
    $password = 'xxxxxx';
    // The url of the update function 
    $url = 'http://twitter.com/statuses/update.xml'; 
    // Arguments we are posting to Twitter 
    $postargs = 'status='.urlencode($status); 
    // Will store the response we get from Twitter 
    $responseInfo=array(); 
    // Initialize CURL 
    $ch = curl_init($url);
    // Tell CURL we are doing a POST 
    curl_setopt ($ch, CURLOPT_POST, true); 
    // Give CURL the arguments in the POST 
    curl_setopt ($ch, CURLOPT_POSTFIELDS, $postargs);
    // Set the username and password in the CURL call 
    curl_setopt($ch, CURLOPT_USERPWD, $username.':'.$password); 
    // Set some cur flags (not too important) 
    curl_setopt($ch, CURLOPT_VERBOSE, 1); 
    curl_setopt($ch, CURLOPT_NOBODY, 0); 
    curl_setopt($ch, CURLOPT_HEADER, 0); 
    curl_setopt($ch, CURLOPT_FOLLOWLOCATION,1); 
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 
    // execute the CURL call 
    $response = curl_exec($ch); 
    // Get information about the response 
    $responseInfo=curl_getinfo($ch); 
    // Close the CURL connection curl_close($ch);
    // Make sure we received a response from Twitter 
    if(intval($responseInfo['http_code'])==200){ 
        // Display the response from Twitter 
        echo $response; 
    }else{ 
        // Something went wrong 
        echo "Error: " . $responseInfo['http_code']; 
    } 
}

updateTwitter("Just finished a sweet tutorial on http://brandontreb.com");

?>  

Я получаю следующий вывод

Error: 0 

Пожалуйста, помогите.

Ответы [ 2 ]

1 голос
/ 25 марта 2010

В документации libcurl говорится, что для http_code установлено значение 0 в случае сбоя (без кода ответа сервера). Вы должны проверить response перед вызовом curl_getinfo и позвонить curl_error, если это ЛОЖЬ. Кроме того, нет смысла хранить пустой массив в responseInfo. Вместо этого вы можете установить его на ноль.

0 голосов
/ 26 марта 2010

Возможно, это ошибка или он забыл удалить ее из поста, но curl_close ($ ch) никогда не вызывается. Может быть, это то, что задерживает ответ? Я проверю больше, когда вернусь домой.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...