Jump to content

Publishing Tweets On A Page


justlukeyou

Recommended Posts

Hi,

 

I am trying to publish Tweets onto a page. Does anyone know how it can be done?

 

I have the following code but it doesn't work.

 

 

 

	<div class="twittercellwhyev">
<ol>
<?	

$feed = json_decode(file_get_contents('https://api.twitter.com/1/statuses/user_timeline.json?include_entities=true&include_rts=true&screen_name=bbc&count=5'));


$pattern = "/http:\/\/(www\.)?([^.]+\.[^.\s]+\.?[^.\s]*)/i";
$replace = "<a href='http://\\1\\2'>http://\\1\\2</a>";

foreach($feed as $output) {

?>
<div class="twittercellinnerev">
<li>
<?	
echo preg_replace($pattern,$replace,$output->text);
?>
</div>
</li>
<?	

}
?>
</ol>
<div class="twitterwhyevimage">
<a href="http://twitter.com"  rel="nofollow" >
<img src="/images/followusontwitter.png" alt="Twitter.com"/>
</a>
</div>	
</div>

Link to comment
https://forums.phpfreaks.com/topic/273355-publishing-tweets-on-a-page/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.