Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I’m trying to get my account's time line and display it. I’m using Abraham Williams authentication library. The program now displays the tweets, but I cannot figure out how to get the corresponding images. I looked in Twitter's documentation and it has that information being return in the xml file. I’m using library which returns an array of objects. I’m iterating through each one and calling the text method which displays the text of the tweet. I cannot find any methods in the object that would pertain to each image's url.

$home_timeline = $oauth->get('statuses/home_timeline',array('count' => 40));  
// print_r($home_timeline);
foreach ($home_timeline as $status) 
    // can get the text but not the image url
    echo "Tweet: $status->text";
share|improve this question

1 Answer

up vote 0 down vote accepted

If you are looking to display the profile images of the users' posting the tweets, then grab the profile_image_url property from each embedded user object within the status objects, like so:

$status->user->profile_image_url
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.