0

現在、このコードを使用して、タイムライン上の最新の6つのツイートを取得しています。Twitterのドキュメントを読みましたが、作成したアプリの認証キーを実装する方法がわかりません。

    <?php
    $json = wp_remote_get("http://api.twitter.com/1/statuses/user_timeline/username.json?count=6", true);
    $decode = json_decode($json['body'], true);
    echo "
        <ul style='color:#6E6E6E'>";
        $count = count($decode); //counting the number of status
        for($i=0;$i<$count;$i++){ echo '
        <li>'.$decode[$i]['text'].'<br><a href='; echo '"http://twitter.com/#!/'.$decode[0][user][name].'/status/'.$decode[$i][id].'"><small>'. strftime('%e %B',strtotime($decode[$i]['created_at'])) ."</small></a> - <a href='http://twitter.com/intent/tweet?in_reply_to=".$decode[$i][id]."'><small>rispondi</small></a> - <a href='http://twitter.com/intent/retweet?tweet_id=".$decode[$i][id]."'><small>retweet</small></a> - <a href='http://twitter.com/intent/favorite?tweet_id=".$decode[$i][id]."'><small>preferito</small></a></li>";} echo "
        </ul>
    ";
    ?>
4

1 に答える 1

1

http://ronzohan.blogspot.com/2013/01/how-to-connect-in-twitter-using-php.htmlで、Twitter の oauth の仕組みに関する説明を試してみることができます。

于 2013-01-22T09:56:26.190 に答える