0

除了头像没有显示之外,我已经完成了所有工作。

对于我的生活,我无法找出原因:(

这是我检索代码的片段:

$connection = getConnectionWithAccessToken($instance['consumerkey'], $instance['consumersecret'], $instance['accesstoken'], $instance['accesstokensecret']);
                        $tweets = $connection->get("https://api.twitter.com/1.1/statuses/user_timeline.json?screen_name=".$instance['username']."&count=10") or die('Couldn\'t retrieve tweets! Wrong username?');


                        if(!empty($tweets->errors)){
                            if($tweets->errors[0]->message == 'Invalid or expired token'){
                                echo '<strong>'.$tweets->errors[0]->message.'!</strong><br />You\'ll need to regenerate it <a href="https://dev.twitter.com/apps" target="_blank">here</a>!' . $after_widget;
                            }else{
                                echo '<strong>'.$tweets->errors[0]->message.'</strong>' . $after_widget;
                            }
                            return;
                        }

                        for($i = 0;$i <= count($tweets); $i++){
                            if(!empty($tweets[$i])){
                                $tweets_array[$i]['created_at'] = $tweets[$i]->created_at;
                                $tweets_array[$i]['text'] = $tweets[$i]->text;          
                                $tweets_array[$i]['status_id'] = $tweets[$i]->id_str;
                                $tweets_array[$i]['profile_image_url'] = $tweets[$i]->profile_image_url;        
                            }
                        }

这实际上是一个 wordpress 插件的片段,我试图以相对成功的方式对其进行自定义,除了我似乎无法检索头像:(

推特 api 大师能否大声说出我哪里出错了。

谢谢

4

1 回答 1

0

原因是因为我使用的是:

$tweets_array[$i]['profile_image_url'] = $tweets[$i]->profile_image_url;

而不是调用一个对象,然后是 ad 数组,如:

$tweets_array[$i]['profile_image_url'] = $tweets[$i]->use->profile_image_url;
于 2013-06-17T17:20:13.347 回答