Эй, ребята,
огляделся, но не смог получить ответ или понять это сам. В основном, пытаясь получить значение "in_reply_to_status_id" statuses / user_timeline и установить его как переменную в php ($ replycheck), вот что я написал, но безрезультатно
<?php
$consumerKey = 'x';
$consumerSecret = 'x';
$oAuthToken = 'x';
$oAuthSecret = 'x';
// Create Twitter API objsect and fake a user agent to have higher rate limit
require_once("twitteroauth.php");
$oauth = new TwitterOAuth($consumerKey, $consumerSecret, $oAuthToken, $oAuthSecret);
$oauth->useragent = 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.9) Gecko/20071025 Firefox/2.0.0.9';
$reply_result = $oauth->get('http://api.twitter.com/1/statuses/user_timeline.json?screen_name=jwhelton');
$tweetid = $reply_result ->id;
$checkreply = $reply_result ->in_reply_to_status_id;
echo "<br /><br />Last tweet was id'd as ".$tweetid." and was reply of ".$checkreply;
?>
Спасибо всем, кто может мне помочь!