2013-03-25 18 views
4

我正在使用Twitter API 1.1获取状态方法以从客户端网站上的帐户返回最新的推文。这工作正常,但我无法找到任何明确的文档如何呈现可能包含的任何链接(包括用户名和包含的链接)作为可点击的链接?使用获取状态API时在推文中呈现链接1.1

我可以在JSON响应中看到任何包含的链接都在XML中,但我不清楚如何去将可点击链接添加到呈现的输出中。围绕新API的文档似乎缺乏实际的例子。

任何人都可以建议吗?

的代码我使用的是拉出最新的tweet如下:

$token = 'TOKEN HERE'; 
$token_secret = 'TOKEN SECRET HERE'; 
$consumer_key = 'CONSUMER KEY HERE'; 
$consumer_secret = 'CONSUMER SECRET HERE'; 

$host = 'api.twitter.com'; 
$method = 'GET'; 
$path = '/1.1/statuses/user_timeline.json'; // api call path 

$query = array(// query parameters 
'screen_name' => 'SCREEN NAME HERE', 
'count' => '1' 
); 

$oauth = array(
'oauth_consumer_key' => $consumer_key, 
'oauth_token' => $token, 
'oauth_nonce' => (string)mt_rand(), // a stronger nonce is recommended 
'oauth_timestamp' => time(), 
'oauth_signature_method' => 'HMAC-SHA1', 
'oauth_version' => '1.0' 
); 

$oauth = array_map("rawurlencode", $oauth); // must be encoded before sorting 
$query = array_map("rawurlencode", $query); 

$arr = array_merge($oauth, $query); // combine the values THEN sort 

asort($arr); // secondary sort (value) 
ksort($arr); // primary sort (key) 

// http_build_query automatically encodes, but our parameters 
// are already encoded, and must be by this point, so we undo 
// the encoding step 
$querystring = urldecode(http_build_query($arr, '', '&')); 

$url = "https://$host$path"; 

// mash everything together for the text to hash 
$base_string = $method."&".rawurlencode($url)."&".rawurlencode($querystring); 

// same with the key 
$key = rawurlencode($consumer_secret)."&".rawurlencode($token_secret); 

// generate the hash 
$signature = rawurlencode(base64_encode(hash_hmac('sha1', $base_string, $key, true))); 

// this time we're using a normal GET query, and we're only encoding the query params 
// (without the oauth params) 
$url .= "?".http_build_query($query); 

$oauth['oauth_signature'] = $signature; // don't want to abandon all that work! 
ksort($oauth); // probably not necessary, but twitter's demo does it 

// also not necessary, but twitter's demo does this too 
function add_quotes($str) { return '"'.$str.'"'; } 
$oauth = array_map("add_quotes", $oauth); 

// this is the full value of the Authorization line 
$auth = "OAuth " . urldecode(http_build_query($oauth, '', ', ')); 

// if you're doing post, you need to skip the GET building above 
// and instead supply query parameters to CURLOPT_POSTFIELDS 
$options = array(CURLOPT_HTTPHEADER => array("Authorization: $auth"), 
//CURLOPT_POSTFIELDS => $postfields, 
CURLOPT_HEADER => false, 
CURLOPT_URL => $url, 
CURLOPT_RETURNTRANSFER => true, 
CURLOPT_SSL_VERIFYPEER => false); 

// do our business 
$feed = curl_init(); 
curl_setopt_array($feed, $options); 
$json = curl_exec($feed); 
curl_close($feed); 

$twitter_data = json_decode($json); 

回答

0

不知道这是否正是你需要的,但我现在用的是tmhOAuth库我的应用程序,看到https://github.com/themattharris/tmhOAuth-examples。使用来自Matt Harris示例的代码,我遍历响应并构建输出,如下面的代码所示。推文中的链接由库函数entify_with_options($tweet)创建。

// Decode response 
$timeline = json_decode($this->tmhOAuth->response['response'], true); 

if(!$timeline){ 
throw new Exception('Error: No response was found.'); 
} 
else{ 
// Start building the output 
foreach ($timeline as $tweet) : 

     ... start of response processing 

     // Format and set tweet text 
    $tw_entified_tweet = tmhUtilities::entify_with_options($tweet); 

     // Format and set creation date for permalink 
    $tw_created_at_formatted = is_twitterlist_format_date($tweet['created_at']); 

     // Format and set permalink 
    $tw_permalink = str_replace(
    array(
     '%screen_name%', 
     '%id%', 
     '%created_at%' 
    ), 
    array(
     $tweet['user']['screen_name'], 
     $tweet['id_str'], 
     $tw_created_at_formatted, 
     ), 
     '<a href="https://twitter.com/%screen_name%/status/%id%" target="_blank">%created_at%</a>' 
    ); 

     ... end response processing 


    endforeach; 
} 

日期格式功能是:

function is_twitterlist_format_date($created_date) 
{ 
    if (is_null($created_date)) { 
     return ''; 
    } 
    else{ 
     // Format: March 4th, 9:19 am 
     return date('F jS, g:i a', strtotime($created_date)); 
    } 
} 

希望这是非常有用的。

11

非常感谢您的回复。我实际上找到了一个解决方案,感谢这位阿什维尔队员的博客文章 - http://www.appliedtns.com/blog/tag/twitter/

它对我来说工作得很好。

// Parse any links found in our tweet 
$formatted_text = preg_replace('/(\b(www\.|http\:\/\/)\S+\b)/', "<a target='_blank' href='$1'>$1</a>", $post->text); 
$formatted_text = preg_replace('/\#(\w+)/', "<a target='_blank' href='http://search.twitter.com/search?q=$1'>#$1</a>", $formatted_text); 
$formatted_text = preg_replace('/\@(\w+)/', "<a target='_blank' href='http://twitter.com/$1'>@$1</a>", $formatted_text); 
+0

也为我工作,感谢您在此发布。 – 2014-03-21 13:01:34

+0

正是我正在寻找的东西 - 现货,谢谢:) – 2015-03-18 12:37:28

+0

仍然有窍门,谢谢! – Bondt 2015-08-24 10:52:15

相关问题