Twitter API 1.1非法字符串偏移'状态'

时间:2013-07-24 06:35:47

标签: api search twitter get

我正在运行Twitter API v1.1。

        $tweets= $connection->get("https://api.twitter.com/1.1/search/tweets.json?q=".$searchstring."&result_type=mixed&rpp=100&count=".$notweets);

        $twitter=json_encode($tweets);

        for ($i = 0; $i < sizeof($twitter["statuses"]); $i++) {
           echo $twitter["statuses"][$i];
        }

警告:非法字符串偏移'状态'

为什么它是错误的偏移?

https://dev.twitter.com/docs/api/1.1/get/search/tweets

1 个答案:

答案 0 :(得分:0)

    $tweets= $connection->get("https://api.twitter.com/1.1/search/tweets.json?q=".$searchstring."&result_type=mixed&rpp=100&count=".$notweets);

    $twitter=json_encode($tweets);

    foreach($tweets->statuses as $tweet){ echo $tweet; }