おはよう、 は見回しましたが、答えを得ることはできませんでした。基本的に私の手を与えることができます誰にでもstatus/user_timelineから "in_reply_to_status_id"を取得するAPIの
<?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;
?>
おかげでHERESに私が書いたものが、無駄に、「in_reply_to_status_id」値statuses/user_timelineを取得し、PHP($のreplycheck)で変数として設定しようとしています!
ステータスが他のものへの返信ではない場合はどうなりますか? – Arvin
Nullを返すだけです – DexCurl
Twitterの最新のバージョンでは、$ reply_result = $ oauth-> get( 'statuses/user_timeline'、array( 'screen_name' => 'jwhelton'))のようなリクエストを作成する必要があります。 – abraham