<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>shoogle designs&#039; blog &#187; Category: Twitter</title>
	<atom:link href="/blog/blog/category/twitter/feed/" rel="self" type="application/rss+xml" />
	<link>https://shoogledesigns.com/blog</link>
	<description></description>
	<lastBuildDate>Sun, 24 Aug 2014 17:33:27 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.6.1</generator>
		<item>
		<title>Embedded timelines with API V1.1 OAuth</title>
		<link>https://shoogledesigns.com/blog/blog/2013/07/22/embedded-timelines-api-v1-1-oauth/</link>
		<comments>https://shoogledesigns.com/blog/blog/2013/07/22/embedded-timelines-api-v1-1-oauth/#comments</comments>
		<pubDate>Mon, 22 Jul 2013 14:14:08 +0000</pubDate>
		<dc:creator>shoogledesigns</dc:creator>
				<category><![CDATA[Twitter]]></category>
		<category><![CDATA[OAuth]]></category>

		<guid isPermaLink="false">https://shoogledesigns.com/blog/?p=1481</guid>
		<description><![CDATA[<p>If you do read my blog, you would have noticed a post on the retirement of Twitter API v1, the launch of v1.1, and the subsequent [new] way of retrieveing the latest tweets of a given user. This post was all about getting a twitter user timeline without having to dig deep into authentication. Today, [&#8230;]</p><p>The post <a href="/blog/blog/2013/07/22/embedded-timelines-api-v1-1-oauth/">Embedded timelines with API V1.1 OAuth</a> appeared first on <a href="/blog">shoogle designs&#039; blog</a>.</p>]]></description>
				<content:encoded><![CDATA[
<!-- wp-jquery-lightbox, a WordPress plugin by ulfben --> 
<p>If you do read my blog, you would have noticed a post on the retirement of Twitter API v1, the launch of v1.1, and the subsequent [new] way of retrieveing the latest tweets of a given user.<br />
<span id="more-1481"></span><br />
<a href="/blog/blog/2013/06/13/embed-latest-tweets-on-website-api-v1-1/" title="Embed your latest tweets on your website the API v1.1 way…or not">This post</a> was all about getting a twitter user timeline without having to dig deep into authentication. Today, I&#8217;m going to show you how to do the same thing with authentication.</p>
<h3>What is OAuth?</h3>
<p>Twitter uses OAuth to provide authorized access to its API, giving its users a secure way to connect their Twitter accounts with 3rd party apps without having to share their passwords, and providing them in the same time with a wide range of libraries.</p>
<h3>Twitter Application</h3>
<p>In order to get started, let&#8217;s first connect our twitter account to the <a href="https://dev.twitter.com" title="Twitter Developers" target="_blank">Twitter Developers interface</a> and create a new application.<br />
Give it a name, a description, fill in your website url, leave the callback url blank, tick the terms and conditions checkbox, fill in the captcha, and create your app.</p>
<p><img src="/blog/wp-content/uploads/2013/07/twitterdev-app.jpg" alt="Twitter Application" title="twitterdev-app" width="1590" height="428" class="alignnone size-full wp-image-1479" /></p>
<p>Once created, request your access tokens by clicking on the blue button at the bottom. This is basically all you need to access the API with authentication. And if you do take a look at the details of the app, you&#8217;ll understand you&#8217;ll be needing all four tokens present on the page (ie the consumer key, the consumer secret, the access token, and the access token secret).</p>
<h3>TwitterOAuth PHP Library</h3>
<p>Now, you&#8217;ll need a php library to work with Twitter&#8217;s OAuth API. If you google twitteroauth, you&#8217;ll find quite a few of libraries to use. The one we are going to use here is <a href="https://github.com/abraham/twitteroauth" title="Twitteroauth by Abraham" target="_blank">Abraham&#8217;s</a>.</p>
<p>Download all files, and copy the twitteroauth folder into your project folder, as you won&#8217;t be needing the rest of the files.</p>
<h3>Connection</h3>
<p>Start with a blank html5-ready index.php file such as the following one:</p>
<pre class="brush: xml; title: ;">
&lt;!DOCTYPE html&gt;
&lt;html&gt;
    &lt;head&gt;
        &lt;meta charset=&quot;utf-8&quot;&gt;
        &lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=edge&quot;&gt;
        &lt;title&gt;&lt;/title&gt;
        &lt;meta name=&quot;description&quot; content=&quot;&quot;&gt;
        &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1&quot;&gt;

    &lt;/head&gt;
    &lt;body&gt;
    &lt;/body&gt;
&lt;/html&gt;
</pre>
<p>In the body, start coding your php. We are going to require twitteroauth.php (and its mate OAuth.php) we have just donwloaded. Note that you don&#8217;t need to call both of them, twitterouath.php is enough.</p>
<pre class="brush: xml; title: ;">
require_once(&quot;twitteroauth/twitteroauth.php&quot;);
</pre>
<p>Create a few variables to hold you app&#8217;s consumer key, consumer secret, access token, and access token secret. Create as many parameter variables as you wish. To give you a head start, we are going to use <a href="https://dev.twitter.com/docs/api/1.1/get/statuses/user_timeline" title="Get statuses/user_timeline" target="_blank">GET statuses/user_timeline</a> and all parameters are listed in there.</p>
<p>For our example, I created a couple of variables sunch as $nb_of_tweets (which is going to do &#8211; well &#8211;  exactly what it says on the tin), and an $include_rts to include or exclude the RTs from your timeline.</p>
<pre class="brush: xml; title: ;">
$consumer_key = 'xxxxxxxxxxxxxxxxxxxxxx';  
$consumer_secret = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx';
$access_token = 'xxxxxxxxx-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx';
$access_token_secret = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx';
$nb_of_tweets = 5;
$include_rts = false;
</pre>
<p>Note that RTs can be excluded with a &#8216;false&#8217; value, but they will still count toward both the maximal length of the timeline and the slice selected by the count parameter. So it says on the user_timeline spec page.</p>
<p>Connect to the API using the get(&#8216;statuses/user_timeline&#8217;) command, and run a loop to display your tweets in an unordered list.<br />
Kudos to <a href="http://kevinch.com/" title="Kevin Chevallier" target="_blank">Kevin</a> who commented below and added his two cents to helps us improve hyperlink display.</p>
<p>And a shit lot more kudos to him again as he also fixed our @mentions and #hashtags links, as I kindly asked him to. [Brilliant mate!]</p>
<p>Full code looks a lot like:</p>
<pre class="brush: xml; title: ;">
    &lt;?php require_once(&quot;twitteroauth/twitteroauth.php&quot;);
        $consumer_key = 'xxxxxxxxxxxxxxxxxxxxxx';                               // Put your consumer key here
        $consumer_secret = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx';         // Put your consumer secret here
        $access_token = 'xxxxxxxxx-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx';   // Put your access token here
        $access_token_secret = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx';   // Put your access token secret here
        $nb_of_tweets = 5;                                                      // Nb of tweets to be displayed
        $include_rts = false;                                                   // true to include RT's or false to exclude them
                     
        $connection = new TwitterOAuth($consumer_key,$consumer_secret,$access_token,$access_token_secret);
                     
        $tweets = $connection-&gt;get('statuses/user_timeline', array('count' =&gt; $nb_of_tweets, 'include_rts' =&gt; $include_rts)); 
                ?&gt;
        &lt;ul&gt;
            &lt;?php  foreach ($tweets as $key =&gt; $tweet): ?&gt;
                &lt;li&gt;&lt;?php 

                    //links
            $tweet = ereg_replace(&quot;[[:alpha:]]+://[^&lt;&gt;[:space:]]+[[:alnum:]/]&quot;,&quot;&lt;a target='_blank' href=\&quot;\&#92;&#48;\&quot;&gt;\&#92;&#48;&lt;/a&gt;&quot;,  $tweet-&gt;text); 
            //#
            $tweet = preg_replace('/(^|\s)#(\w*[a-zA-Z_]+\w*)/', '\1&lt;a target=&quot;_blank&quot; href=&quot;https://twitter.com/search?q=%23\2&amp;src=hash&quot;&gt;#\2&lt;/a&gt;', $tweet);
            //@
            $tweet = preg_replace('/[@]+([A-Za-z0-9-_]+)/', '&lt;a target=&quot;_blank&quot; href=&quot;http://twitter.com/$1&quot; target=&quot;_blank&quot;&gt;@$1&lt;/a&gt;', $tweet );
                    
                    echo $tweet;

                ?&gt;&lt;/li&gt;
            &lt;?php endforeach ?&gt;
        &lt;/ul&gt;
</pre>
<p>Refresh your page, you should be getting your latest tweets listed  nicely in an unordered list.</p>
<p><img src="/blog/wp-content/uploads/2013/07/twitter-timeline-oauth.jpg" alt="Twitter Timeline" title="twitter-timeline-oauth" width="1590" height="428" class="alignnone size-full wp-image-1480" /></p>
<p>Note that GET statuses/user_timeline has got <a href="https://dev.twitter.com/docs/rate-limiting/1.1/limits" title="GET statuses/user_timeline limits" target="_blank">limitations</a>. For example, the maximum number of requests allotted per user is currently set to 180 per 15 minute window. Therefore, if you do get a lot of trafic on your site, it would be wise to optimize all this by setting some kind of cache and avoid reaching the 180 request limit.</p>
<p>For people testing this out, make sure you run your test in a local environment (using MAMP, or xampp for windows users).</p>
<div style="background-color:#EDC591">Last, but not least, I added a <a href="https://github.com/shoogledesigns/Embedded-timelines-with-API-V1.1-OAuth" title="Embedded timelines with API V1.1 OAuth" target="_blank">Github repo</a> so you can have a go at this API in no time. You just need to replace the tokens by your owns.</div>
<p>So long. </p>
<p>The post <a href="/blog/blog/2013/07/22/embedded-timelines-api-v1-1-oauth/">Embedded timelines with API V1.1 OAuth</a> appeared first on <a href="/blog">shoogle designs&#039; blog</a>.</p>]]></content:encoded>
			<wfw:commentRss>https://shoogledesigns.com/blog/blog/2013/07/22/embedded-timelines-api-v1-1-oauth/feed/</wfw:commentRss>
		<slash:comments>31</slash:comments>
		</item>
		<item>
		<title>Embed your latest tweets on your website the API v1.1 way&#8230;or not</title>
		<link>https://shoogledesigns.com/blog/blog/2013/06/13/embed-latest-tweets-on-website-api-v1-1/</link>
		<comments>https://shoogledesigns.com/blog/blog/2013/06/13/embed-latest-tweets-on-website-api-v1-1/#comments</comments>
		<pubDate>Thu, 13 Jun 2013 07:55:33 +0000</pubDate>
		<dc:creator>shoogledesigns</dc:creator>
				<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">https://shoogledesigns.com/blog/?p=1363</guid>
		<description><![CDATA[<p>July 22nd 2013 &#8211; UPDATE: Now also in the blog the OAuth Way. A quick follow up to my &#8220;Quick and easy way to display tweets on a static website&#8221; blogpost in the wake of the retirement of Twitter&#8217;s API v1, as the json method used on that tuto isn&#8217;t working anymore. Right, so you [&#8230;]</p><p>The post <a href="/blog/blog/2013/06/13/embed-latest-tweets-on-website-api-v1-1/">Embed your latest tweets on your website the API v1.1 way&#8230;or not</a> appeared first on <a href="/blog">shoogle designs&#039; blog</a>.</p>]]></description>
				<content:encoded><![CDATA[
<!-- wp-jquery-lightbox, a WordPress plugin by ulfben --> 
<p>
<div style="background-color:#EDC591">
<strong>July 22nd 2013 &#8211; <span style="color:red">UPDATE:</span></strong> Now also in the blog <a href="/blog/blog/2013/07/22/embedded-timelines-api-v1-1-oauth/" title="Embed your latest tweets on your website the API v1.1 way">the OAuth Way</a>.
</div>
<p>A quick follow up to my &#8220;<a href="/blog/blog/2012/10/30/reminder-quick-and-easy-way-to-display-tweets-on-a-static-website/" title="Quick and easy way to display tweets on a static website">Quick and easy way to display tweets on a static website</a>&#8221; blogpost in the wake of the retirement of Twitter&#8217;s API v1, as the json method used on that tuto isn&#8217;t working anymore.<br />
<span id="more-1363"></span><br />
Right, so you were using Twitter&#8217;s former API (v.1) to display your latest tweets on your website, and now you&#8217;re getting a blank section. If you look under the hood with the dev tools, you probably will see an error such as <span style="color:red">&#8220;Failed to load resource: the server responded with a status of 410 (Gone)&#8221;</span>.</p>
<p>As Twitter announced it on June 11th, <a href="https://dev.twitter.com/blog/api-v1-is-retired" title="API v1 Retirement is Complete - Use API v1.1" target="_blank">API v1 is now retired</a>, and we need to switch to API v1.1. This isn&#8217;t the biggest news of the week. The plan had ben laid out for us some six months ago. </p>
<p>I had made a mental note to sort it out before it happened. </p>
<p>Needless to say I had done absolutely bugger all about it. Partly because I was lacking motivation. All this bollox &#8211; you&#8217;ll admit it &#8211; does not make much sense, especially since our timelines are already publicly available. But that&#8217;s another story, hence let&#8217;s not get philosophical.</p>
<p>So what does the API change imply?</p>
<h3>Stricter rules</h3>
<p>Take a look at Twitter&#8217;s documentation on the subject.<br />
There is an <a href="https://dev.twitter.com/docs/api/1.1/overview" title="API v1.1 overview" target="_blank">overview of the new API</a>, a detailed page on <a href="https://dev.twitter.com/docs/embedded-timelines" title="Embedded Timelines" target="_blank">timeline embedding</a>, and what <a href="https://dev.twitter.com/terms/display-requirements" title="Developer Display Requirements" target="_blank">rules you need to follow</a> in terms of twitter status display.</p>
<p>In a nutshell, you have very little room to get excentrique with the way you want to integrate your twitter status within your website. </p>
<h3>Procedure</h3>
<p><em>Side note: There are many ways to connect to Twitter, but this post isn&#8217;t about how to make authenticated calls to the API. Here, we are just going to focus on the simple display of a timeline without authentication.</em></p>
<ol>
<li>Log into your twitter account</li>
<li>Go to your widget management page using <a href="https://twitter.com/settings/widgets" title="Twitter Widgets" target="_blank">https://twitter.com/settings/widgets</a></li>
<li>Create your widget choosing the timeline source of your choice (user, favs, list or search)</li>
<li>Copy and paste the code into the HTML of your site.</li>
<li>Change the settings you are able to change (which isn&#8217;t much) to your liking (read from Client Side Options and onwards on the <a href="https://dev.twitter.com/docs/embedded-timelines" title="Embedded Timelines" target="_blank">embedded timelines</a> page)</li>
</ol>
<h3>Example</h3>
<p>A simple example with a status timeline limited to 5 tweets (data-tweet-limit=&#8221;5&#8243;), a transparent background, no header, no footer (data-chrome=&#8221;nofooter noheader transparent&#8221;), and the color of my choice for the links (data-link-color=&#8221;#1BB5E0&#8243;) and borders (data-border-color=&#8221;#B5DDE8&#8243;).</p>
<p><a class="twitter-timeline" href="https://twitter.com/shoogledesigns" data-widget-id="344901003046445057" data-tweet-limit="5" data-link-color="#1BB5E0" data-chrome="nofooter noheader transparent" data-border-color="#B5DDE8">Tweets by @shoogledesigns</a></p>
<p><a href="https://twitter.com/shoogledesigns" class="twitter-follow-button" data-show-count="false" data-lang="en">Follow @shoogledesigns</a></p>
<p><script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+"://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script></p>
<h3>Still not happy?</h3>
<p>Frustrated about the new api, the new setup, and more importantly the new rules? Feeling rebellious? Then Jason Mayes&#8217; <a href="https://plus.google.com/app/basic/stream/z13fg5axoq2mslobv04ce3xolrynz524las" title="How to get your tweets displaying on your website using JavaScript, without using new Twitter 1.1 API " target="_blank">post</a> will be of great interest to you, since he found a way of returning the raw text of his tweets using Javascript, the way it used to be with the json/api v1.0 back in the days,&#8230;a couple of days ago I mean. </p>
<p>Well, it didn&#8217;t take long, did it? lol</p>
<p>Check out his <a href="http://jsfiddle.net/jmayes/maT2Z/" title="Jason Mayes' Twitter post fetcher" target="_blank">JS fiddle</a>.</p>
<p>The post <a href="/blog/blog/2013/06/13/embed-latest-tweets-on-website-api-v1-1/">Embed your latest tweets on your website the API v1.1 way&#8230;or not</a> appeared first on <a href="/blog">shoogle designs&#039; blog</a>.</p>]]></content:encoded>
			<wfw:commentRss>https://shoogledesigns.com/blog/blog/2013/06/13/embed-latest-tweets-on-website-api-v1-1/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Reminder: Quick and easy way to display tweets on a static website</title>
		<link>https://shoogledesigns.com/blog/blog/2012/10/30/reminder-quick-and-easy-way-to-display-tweets-on-a-static-website/</link>
		<comments>https://shoogledesigns.com/blog/blog/2012/10/30/reminder-quick-and-easy-way-to-display-tweets-on-a-static-website/#comments</comments>
		<pubDate>Tue, 30 Oct 2012 10:59:45 +0000</pubDate>
		<dc:creator>shoogledesigns</dc:creator>
				<category><![CDATA[Twitter]]></category>
		<category><![CDATA[redesign]]></category>

		<guid isPermaLink="false">https://shoogledesigns.com/blog/?p=1099</guid>
		<description><![CDATA[<p>June 12th 2013 &#8211; UPDATE: The method used in this post is no longer valid, Twitter having retired API v1, and rolled out API v1.1 yesterday. Get it sorted out here. In the course of my work of redesign of shoogledesigns.com (see teaser here), I have encountered a peculiar situation in trying to locate a [&#8230;]</p><p>The post <a href="/blog/blog/2012/10/30/reminder-quick-and-easy-way-to-display-tweets-on-a-static-website/">Reminder: Quick and easy way to display tweets on a static website</a> appeared first on <a href="/blog">shoogle designs&#039; blog</a>.</p>]]></description>
				<content:encoded><![CDATA[
<!-- wp-jquery-lightbox, a WordPress plugin by ulfben --> 
<p>
<div style="background-color:#EDC591">
<strong>June 12th 2013 &#8211; <span style="color:red">UPDATE:</span> The method used in this post is no longer valid, Twitter having retired API v1, and rolled out API v1.1 yesterday.</strong><br />
Get it sorted out <a href="/blog/blog/2013/06/13/embed-latest-tweets-on-website-api-v1-1/" title="Embed your latest tweets on your website the API v1.1 way">here</a>.
</div>
<p>In the course of my work of redesign of shoogledesigns.com (see teaser <a href="http://dribbble.com/shoogledesigns/projects/87691-shoogledesigns-com-redesign-v2" title="shoogle designs redesign v2" target="_blank">here</a>), I have encountered a peculiar situation in trying to locate a quick and efficient way to display a number of my tweets on my website. Now, i&#8217;m not talking WordPress and plugins, but static html pages.<span id="more-1099"></span></p>
<p><img src="/blog/wp-content/uploads/2012/10/embed-tweets.jpg" alt="Embed tweets on a static website" /></p>
<p>I&#8217;ve been looking for a few tutos as it had been flipping ages I had needed to embed tweets into a static website, and funny enough, it took me quite a while to make it work again.</p>
<p>I wasn&#8217;t asking for much: no widgets, no third party apps, no 3-page tutorials and endless code to read. Just a few lines of jquery and a couple of variables to change is all I wanted.</p>
<p>Yet, this ended up being tough to find. It either didn&#8217;t work with the latest version of jquery at hand, didn&#8217;t display RT&#8217;s or didn&#8217;t display fuck all.</p>
<p>After a bit of work, i found some short code, and thought you may want to keep a copy of it, in case&#8230;</p>
<pre class="brush: jscript; title: ;">
$(document).ready(function () {		
	
// Type in your twitter id here
    
var user = 'TWITTERID';
          
// How many Tweets do you want to display?
//Type in the number after &amp;count=
// Do you wanna show RT's? include_rts= '0 for no' or '1 for yes'
 
    $.getJSON('http://api.twitter.com/1/statuses/user_timeline.json?screen_name=' + user + '&amp;count=3&amp;include_rts=1&amp;callback=?', function(data)      {
          
        var tweet = &quot;&quot;;
for (i = 0; i &lt; data.length; i++) {
tweet += data[i].text + &quot;&lt;/br&gt;&lt;/br&gt;&quot;;
}
      
        tweet = tweet.replace(/(\b(https?|ftp|file):\/\/[-A-Z0-9+&amp;@#\/%?=~_|!:,.;]*[-A-Z0-9+&amp;@#\/%=~_|])/ig, function(url) {
            return '&lt;a target=&quot;_blank&quot; href=&quot;'+url+'&quot;&gt;'+url+'&lt;/a&gt;';
        }).replace(/B@([_a-z0-9]+)/ig, function(reply) {
            return  reply.charAt(0)+'&lt;a href=&quot;http://twitter.com/'+reply.substring(1)+'&quot;&gt;'+reply.substring(1)+'&lt;/a&gt;';
        });
      
// Give your tweets a home: here an element of id tweet (#tweet)
        
$(&quot;#tweet&quot;).html(tweet);
    });
});
</pre>
<p>I&#8217;ve put an un-styled working version of this on my Github.<br />
Download the files <a href="https://github.com/shoogledesigns/embed-tweets-static-website" title="Embed tweets on a static website" target="_blank">here</a>.</p>
<p>The post <a href="/blog/blog/2012/10/30/reminder-quick-and-easy-way-to-display-tweets-on-a-static-website/">Reminder: Quick and easy way to display tweets on a static website</a> appeared first on <a href="/blog">shoogle designs&#039; blog</a>.</p>]]></content:encoded>
			<wfw:commentRss>https://shoogledesigns.com/blog/blog/2012/10/30/reminder-quick-and-easy-way-to-display-tweets-on-a-static-website/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Walk back in time with Twitter image galleries</title>
		<link>https://shoogledesigns.com/blog/blog/2011/08/24/walk-back-in-time-with-twitter-image-galleries/</link>
		<comments>https://shoogledesigns.com/blog/blog/2011/08/24/walk-back-in-time-with-twitter-image-galleries/#comments</comments>
		<pubDate>Wed, 24 Aug 2011 09:08:24 +0000</pubDate>
		<dc:creator>shoogledesigns</dc:creator>
				<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">https://shoogledesigns.com/blog/?p=788</guid>
		<description><![CDATA[<p>Twitter have just rolled out a new and cool feature, with the announcement of the now-available image galleries. The feature allows you to display the pictures you have added to your tweets in an aggregated manner, simply using the grid and slideshow url (see below). The new feature displays up to 100 of your mot [&#8230;]</p><p>The post <a href="/blog/blog/2011/08/24/walk-back-in-time-with-twitter-image-galleries/">Walk back in time with Twitter image galleries</a> appeared first on <a href="/blog">shoogle designs&#039; blog</a>.</p>]]></description>
				<content:encoded><![CDATA[
<!-- wp-jquery-lightbox, a WordPress plugin by ulfben --> 
<p>Twitter have just rolled out a new and cool feature, with the announcement of the now-available image galleries.</p>
<p>The feature allows you to display the pictures you have added to your tweets in an aggregated manner, simply using the grid and slideshow url (see below). The new feature displays up to 100 of your mot recently tweeted images in chronological order.<br />
<img src="/blog/wp-content/uploads/2011/08/imagegallery.jpg" alt="Walk back in time with Twitter image galleries" /></p>
<div class="floatright"><span id="more-788"></span></div>
<p>Without surprise, all big image sharing partners such as Instagram, yFrog, and TwitPic are supported.</p>
<p>Check out your media grid by replacing &#8216;username&#8217; by your twitter id:</p>
<p>https://twitter.com/#!/username/media/grid</p>
<p>https://twitter.com/#!/username/media/slideshow</p>
<p>This is obviously a great wee tool if you tend to take a lot of pictures, especially if you are on the go, like a long trip, like my friend (and Travel Photograph) Ken Kaminesky <a href="https://twitter.com/#!/KenKaminesky/media/grid" target="_blank">here</a>&#8230;</p>
<p>The post <a href="/blog/blog/2011/08/24/walk-back-in-time-with-twitter-image-galleries/">Walk back in time with Twitter image galleries</a> appeared first on <a href="/blog">shoogle designs&#039; blog</a>.</p>]]></content:encoded>
			<wfw:commentRss>https://shoogledesigns.com/blog/blog/2011/08/24/walk-back-in-time-with-twitter-image-galleries/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Served from: shoogledesigns.com @ 2014-08-29 06:46:14 -->