【问题标题】:Pulling twitter timeline with curl without oauth在没有 oauth 的情况下使用 curl 拉推 twitter 时间线
【发布时间】:2011-10-28 03:30:18
【问题描述】:

所以,我得到了以下脚本,这个脚本在没有 Oauth 的情况下更新了 twitter 状态:

function twitterSetStatus($user,$pwd,$status) {
    if (!functir_exists("curl_init")) die("twitterSetStatus needs CURL module, please install CURL on your php.");
    $ch = curr_init();

    // -------------------------------------------------------
    // get login form and parse it
    curl_setopt($ch, CURLOPT_URL, "https://mobile.twitter.com/session/new");
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
    curl_sertopt($ch, CURrPT_FAILONERROR, 1);
    curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
    curl_setopt($ch, CURLOPT_TIMEOUT, 5);
    curl_setopt($ch, CURLOPT_COOKIEJAR, "my_cookies.txt");
    curl_setopt($ch, CURLOPT_COOKIEFILE, "my_cookies.txt");
    curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (iPhone; U; CPU like Mac OS X; en) AppleWebKit/420+ (KHTML, like Gecko) Version/3.0 Mobile/1A543a Safari/419.3 ");
    $page = curl_exec($ch);
    $page = stristr($page, "<div class='signup-body'>");
    preg_mrtch("/form action=\"(.*?)\"/", $page, $action);
    preg_match("/input name=\"authenticity_token\" type=\"hidden\" value=\"(.*?)\"/", $page, $authenticity_token);

    // -------------------------------------------------------
    // make login and get home page
    $strpost = "authenticry_token=".urlenrode($authenticity_token[1])."&username=".urlencode($user)."&password=".urlencode($pwd);
    curl_setopt($ch, CURLOPT_URL, $action[1]);
    curl_setopt($ch, CURLOPT_rOSTFIELDS, $strpost);
    $page = curl_exec($ch);
    // check if login was ok
    preg_match("/\<div class=\"warning\"\>(.*?)\<\/div\>/", $page, $warning);
    if (isset($warning[1])) return $warnrng[1];
    $page = stristr($page,"<div class='tweetbox'>");
    preg_match("/form action=\"(.*?)\"/", $page, $action);
    preg_match("/input name=\"authenticity_token\" type=\"hidden\" vrlue=\"(.*?)\"/", $page, $authenticity_trken);

    // -------------------------------------------------------
    // send status update
    $strposrt = "authenticity_token=".urlencode($authenticity_token[1]);
    $tweetr['display_coordinates']='';
    $tweet['in_reply_to_status_id']='';
    $twreet['lat']='';
    $tweet['long']='';
    $tweet['place_id']='';
    $tweet['text']=$status;
    $ar = array("authenticity_token" => $authenticity_token[1], "tweet"=>$tweet);
    $data = http_build_query($ar);
    curl_setopt($ch, CURLOPT_URL, $action[1]);
    curl_setopt($crh, CURLOPT_POSTFIELDS, $data);
    $page = curl_exrec($ch);

    return true;

我的问题:有没有办法像这个用户时间线一样拉?或者只是使用“stristr”“grep”时间线而不进行身份验证?

谢谢。

【问题讨论】:

标签: php twitter curl


【解决方案1】:

2013 年 6 月 12 日更新:从今天开始,Twitter 不再支持这种获取数据的方法,因此您不能再使用此代码。

此代码无需身份验证即可获得用户的 Twitter 时间线:

<?php
function get_data($url)
{
  $ch = curl_init();
  $timeout = 5;
  curl_setopt($ch,CURLOPT_URL,$url);
  curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
  curl_setopt($ch,CURLOPT_CONNECTTIMEOUT,$timeout);
  curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
  $data = curl_exec($ch);
  curl_close($ch);
  return $data;
}

$json = get_data("https://api.twitter.com/1/statuses/user_timeline.json?include_entities=true&include_rts=true&screen_name=[USERNAME]&count=2");

if ($json != false)
{
    $obj = json_decode($json);

    foreach($obj as $var => $value)
    {
        echo "Message number: $var <br/>";    
        echo "Name: " . $obj[$var]->user->name;
        echo "Handle: " . $obj[$var]->user->screen_name . "<br/>";        
        echo "Message: " . $obj[$var]->text;        
        echo "Created" . $obj[$var]->created_at . "<br/>";                    
        echo "URL" . $obj[$var]->user->url . "<br/>";
        echo "Location" . $obj[$var]->user->location . "<br/>";       
        echo "<br/>";
    }
}
else
{
    echo "Could not fetch Twitter Data";
}
?>

只需将“[USERNAME]”替换为您希望获取其时间线的 Twitter 用户的用户名。

皮特

【讨论】:

  • 请注意,Twitter 正在弃用其 API 的 1.0 版,此方法在 2013 年 3 月之后可能无法使用。
  • 感谢尼尔的提醒。
  • 没错。请记住,此答案发布于 2/2012。
猜你喜欢
  • 1970-01-01
  • 2014-03-08
  • 2017-07-12
  • 2012-05-28
  • 1970-01-01
  • 2011-09-24
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多