<?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>Destroy Today &#187; Twitter</title>
	<atom:link href="http://destroytoday.com/blog/tag/twitter/feed/" rel="self" type="application/rss+xml" />
	<link>http://destroytoday.com/blog</link>
	<description>Jonnie is back to work.</description>
	<lastBuildDate>Tue, 16 Mar 2010 01:25:34 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Paging through the Twitter stream</title>
		<link>http://destroytoday.com/blog/2010/03/paging-through-the-twitter-stream/</link>
		<comments>http://destroytoday.com/blog/2010/03/paging-through-the-twitter-stream/#comments</comments>
		<pubDate>Tue, 16 Mar 2010 01:25:13 +0000</pubDate>
		<dc:creator>Jonnie</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tip]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://destroytoday.com/blog/?p=1763</guid>
		<description><![CDATA[Working with an API can be a hassle—especially if you have no control over it. Twitter&#8217;s API has its fair share of obstacles, one of which is paging. When you first look at a method in the Twitter API, you will most likely go straight to the page parameter. It&#8217;s simple and expected—page 1 is [...]]]></description>
			<content:encoded><![CDATA[<p>Working with an API can be a hassle—especially if you have no control over it. Twitter&#8217;s API has its fair share of obstacles, one of which is paging. When you first look at a method in the Twitter API, you will most likely go straight to the <em>page</em> parameter. It&#8217;s simple and expected—page 1 is the most recent and the page number increases as you navigate back in time. This seems like the right solution, but it&#8217;s not. The <em>page</em> parameter has a major downside.</p>
<p><img class="alignnone size-full wp-image-1768" title="twitter_paging_0" src="http://destroytoday.com/blog/wp-content/uploads/2010/03/twitter_paging_0.gif" alt="twitter_paging_0" width="645" height="247" /></p>
<p>Since page 1 is the most recent, the entire paging system is relative and forever changing with every new tweet. This means if your user pages back in time, as new tweets arrive in the Twitter database (for his stream), he&#8217;ll see the same tweets finding their way into the next page. If the user pages older once and 20 new tweets arrive in Twitter database, he will see the exact same page the next time he pages older (if the <em>count</em> parameter is set to 20).</p>
<p><img class="alignnone size-full wp-image-1769" title="twitter_paging_1" src="http://destroytoday.com/blog/wp-content/uploads/2010/03/twitter_paging_1.gif" alt="twitter_paging_1" width="645" height="215" /></p>
<p>This issue can be easily dodged by using the <em>max_id</em> parameter. With it, you can set the maximum tweet id number to appear in the stream, excluding all tweets that appear after it. This can be used in paging by setting <em>max_id</em> to one less than the id of the bottom tweet in the stream. There are, however, a few downsides. Since there is no <em>min_id</em> parameter, you need to store all of the previous <em>max_id</em> parameters, so you can find your way back (assuming you run your app off the raw API data and not a local database). Also, I&#8217;ve noticed Twitter caps the number of tweets you can retrieve to about 700 or 2 months (I&#8217;m not sure if this is a count-based limit or date-based). This is interesting, considering Twitter indicates in the API docs that they limit the number of retrievable to 3,200. They do note this under &#8220;pagination limits&#8221; using the <em>page</em> and <em>count</em> parameters, but I assumed we would see this same amount for <em>max_id</em>.</p>
<p>Now, another issue with Twitter pagination, and the original reason I decided to write this post, is gaps in the Twitter stream. If your Twitter app caches tweets to a local database, this is for you. Let&#8217;s say someone uses your application once, then takes a day off and returns the next day. In that interim, thousands upon thousands of tweets entered the Twitter database, and possibly your user&#8217;s stream. The next time this user starts the application, it loads in the latest tweets, but there is still a slew of tweets from the previous day. What do you do?</p>
<p><img class="alignnone size-full wp-image-1772" title="twitter_paging_2" src="http://destroytoday.com/blog/wp-content/uploads/2010/03/twitter_paging_2.gif" alt="twitter_paging_2" width="645" height="42" /></p>
<p>Use a combination of the <em>max_id</em> and <em>since_id</em> parameters. Start loading older pages using <em>max_id</em> and when the return is empty, you&#8217;ve either caught up to the most recent tweet id from the previous session or you reached Twitter&#8217;s limit.</p>
<p>A few of Twitter&#8217;s newer methods use cursors for paging, where each result includes two numbers that are used to navigate to the newer or older page. I personally haven&#8217;t used any of these methods, so it&#8217;s unclear to me whether the numbers are relative or absolute—hopefully, the latter. In any case, I look forward to this implementation in some of the older methods like <em>favorites</em> that doesn&#8217;t even have <em>since_id</em> or <em>max_id</em> yet.</p>
]]></content:encoded>
			<wfw:commentRss>http://destroytoday.com/blog/2010/03/paging-through-the-twitter-stream/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Introducing TwitterAspirin: an AS3 Twitter API painkiller</title>
		<link>http://destroytoday.com/blog/2010/01/introducing-twitteraspirin-an-as3-twitter-api-painkiller/</link>
		<comments>http://destroytoday.com/blog/2010/01/introducing-twitteraspirin-an-as3-twitter-api-painkiller/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 15:01:58 +0000</pubDate>
		<dc:creator>Jonnie</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[AIR]]></category>
		<category><![CDATA[Announcement]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[DestroyTwitter]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://destroytoday.com/blog/?p=1704</guid>
		<description><![CDATA[A couple months ago, I started working on a Twitter component for my current project at Adobe. I went into this knowing I&#8217;d have to finally face the beast&#8230; OAuth. Just about every well-known Twitter client out there uses Basic Auth—and for a reason. It&#8217;s easy, what the user expects, and gives your app more [...]]]></description>
			<content:encoded><![CDATA[<p>A couple months ago, I started working on a Twitter component for my current project at Adobe. I went into this knowing I&#8217;d have to finally face the beast&#8230; OAuth. Just about every well-known Twitter client out there uses Basic Auth—and for a reason. It&#8217;s easy, what the user expects, and gives your app more credibility—there&#8217;s no requirement to leave to authenticate through the browser like with OAuth.</p>
<p>About five or six months ago, Twitter decided to enforce the transition. From then on, any application that uses the API must use OAuth in order to see &#8220;via [your app]&#8221; on tweets published with it—otherwise, it would display &#8220;via API.&#8221; Since &#8220;via&#8221; is where apps get probably 90% of their referrals, this was a big deal. Luckily for me, <a href="http://destroytwitter.com" target="_blank">DestroyTwitter</a> existed before that time and Twitter decided not to push the change on the veteran apps. Recently, however, the bad news spread that Basic Auth would be deprecated in June. This means every Twitter app must transition to the pain that is OAuth.</p>
<p>After developing the <a href="http://destroytoday.com/blog/2009/10/adobe-max-companion-launched/" target="_blank">MAX Companion</a> this past fall and now the more generalized version, I found myself rewriting the Twitter component each time. After a while, the Twitter API code I wrote for DestroyTwitter began to merge with the actual implementation, so it was no longer a standalone library that could easily be used by other projects. These past few months, I&#8217;ve been learning a great deal about framework architecture and design patterns. It has led me to realize I need to start fresh.</p>
<p>With all that being said, I&#8217;d like introduce a library I started working on two days ago. I call it <a href="http://github.com/destroytoday/TwitterAspirin" target="_blank">TwitterAspirin</a>. It&#8217;s an AS3 Twitter API library that eases the pain, providing developers with a very powerful tool for communicating with Twitter. Though it&#8217;s still a newborn at the moment, I see potential already. The library is built on <a href="http://robotlegs.org/" target="_blank">RobotLegs</a> and uses <a href="http://github.com/robertpenner/as3-signals" target="_blank">AS3 Signals</a> instead of events. It&#8217;s hosted on <a href="http://github.com" target="_blank">GitHub</a>, so the source code will always be available to the public. And, after last night&#8217;s commit, its OAuth functionality is complete. Here&#8217;s how to use it:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
</pre></td><td class="code"><pre class="actionscript3" style="font-family:monospace;"><span style="color: #0000FF;">package</span> <span style="color: #000000;">&#123;</span>
	<span style="color: #0000FF;">import</span> com.destroytoday.twitteraspirin.Twitter;
&nbsp;
	<span style="color: #0000FF;">import</span> <span style="color: #000000;">flash.display</span>.<span style="color: #000000;">Sprite</span>;
&nbsp;
	<span style="color: #0000FF;">public</span> <span style="color: #0000FF;">class</span> Test extends <span style="color: #000000;">Sprite</span> <span style="color: #000000;">&#123;</span>
		<span style="color: #FF0099;">// set application consumer key and secret</span>
		<span style="color: #0000FF;">public</span> <span style="color: #FF0000;">var</span> twitter<span style="color: #000000;">:</span>Twitter = <span style="color: #0000FF;">new</span> Twitter<span style="color: #000000;">&#40;</span>consumerKey, consumerSecret<span style="color: #000000;">&#41;</span>;
&nbsp;
		<span style="color: #0000FF;">public</span> <span style="color: #FF0000;">function</span> Test<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#123;</span>
			<span style="color: #FF0099;">// add signal listeners</span>
			twitter.oauth.requestTokenSignal.<span style="color: #FF0000;">add</span><span style="color: #000000;">&#40;</span>requestTokenHandler<span style="color: #000000;">&#41;</span>;
			twitter.oauth.accessTokenSignal.<span style="color: #FF0000;">add</span><span style="color: #000000;">&#40;</span>accessTokenHandler<span style="color: #000000;">&#41;</span>;
			twitter.oauth.verifyAccessTokenSignal.<span style="color: #FF0000;">add</span><span style="color: #000000;">&#40;</span>verifyAccessTokenHandler<span style="color: #000000;">&#41;</span>;
		<span style="color: #000000;">&#125;</span>
&nbsp;
		<span style="color: #FF0099;">// click the 'Authorize' button to get the request token</span>
		<span style="color: #0000FF;">protected</span> <span style="color: #FF0000;">function</span> authorizeClickHandler<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">:</span><span style="color: #0000FF;">void</span> <span style="color: #000000;">&#123;</span>
			twitter.oauth.getRequestToken<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;
		<span style="color: #000000;">&#125;</span>
&nbsp;
		<span style="color: #FF0099;">// upon receiving the request token, open Twitter in the browser to authorize</span>
		<span style="color: #0000FF;">protected</span> <span style="color: #FF0000;">function</span> requestTokenHandler<span style="color: #000000;">&#40;</span>oauth<span style="color: #000000;">:</span>OAuth, token<span style="color: #000000;">:</span>OAuthToken<span style="color: #000000;">&#41;</span><span style="color: #000000;">:</span><span style="color: #0000FF;">void</span> <span style="color: #000000;">&#123;</span>
			<span style="color: #FF0000;">navigateToURL</span><span style="color: #000000;">&#40;</span><span style="color: #0000FF;">new</span> <span style="color: #000000;">URLRequest</span><span style="color: #000000;">&#40;</span>oauth.getAuthorizeURL<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span>;
		<span style="color: #000000;">&#125;</span>
&nbsp;
		<span style="color: #FF0099;">// return with the provided pin and click the 'Activate' button to get the access token</span>
		<span style="color: #0000FF;">protected</span> <span style="color: #FF0000;">function</span> activateClickHandler<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">:</span><span style="color: #0000FF;">void</span> <span style="color: #000000;">&#123;</span>
			twitter.oauth.getAccessToken<span style="color: #000000;">&#40;</span>pin<span style="color: #000000;">&#41;</span>;
		<span style="color: #000000;">&#125;</span>
&nbsp;
		<span style="color: #FF0099;">// upon receiving the access token, verify it</span>
		<span style="color: #0000FF;">protected</span> <span style="color: #FF0000;">function</span> accessTokenHandler<span style="color: #000000;">&#40;</span>oauth<span style="color: #000000;">:</span>OAuth, token<span style="color: #000000;">:</span>OAuthToken<span style="color: #000000;">&#41;</span><span style="color: #000000;">:</span><span style="color: #0000FF;">void</span> <span style="color: #000000;">&#123;</span>
			oauth.verifyAccessToken<span style="color: #000000;">&#40;</span>token<span style="color: #000000;">&#41;</span>;
		<span style="color: #000000;">&#125;</span>
&nbsp;
		<span style="color: #FF0099;">// done</span>
		<span style="color: #0000FF;">protected</span> <span style="color: #FF0000;">function</span> verifyAccessTokenHandler<span style="color: #000000;">&#40;</span>oauth<span style="color: #000000;">:</span>OAuth, token<span style="color: #000000;">:</span>OAuthToken<span style="color: #000000;">&#41;</span><span style="color: #000000;">:</span><span style="color: #0000FF;">void</span> <span style="color: #000000;">&#123;</span>
		<span style="color: #000000;">&#125;</span>
	<span style="color: #000000;">&#125;</span>
<span style="color: #000000;">&#125;</span></pre></td></tr></table></div>

<p>As you can see, it&#8217;s extremely easy to use. Not only that, it provides great flexibility. Many libraries are simple to implement, but don&#8217;t allow the developer access to certain aspects of the process. With TwitterAspirin, each method returns the loader involved with the operation, giving developers the ability to listen for errors, cancel the operation, or attain the raw API data. The library also uses loader pools to recycle instances, so you can submit a tweet and, while it&#8217;s loading, submit another—you don&#8217;t have to wait for the first operation to finish. Then, once the operation is complete, the loader is disposed and returned to the pool, which optimizes performance and memory usage.</p>
<p>I&#8217;m really excited to see where TwitterAspirin goes and I have nothing but great expectations. Be sure to follow along with development and fork whenever you like.</p>
]]></content:encoded>
			<wfw:commentRss>http://destroytoday.com/blog/2010/01/introducing-twitteraspirin-an-as3-twitter-api-painkiller/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>The Twitter Lists API, reverse engineered</title>
		<link>http://destroytoday.com/blog/2009/11/the-twitter-lists-api-reverse-engineered/</link>
		<comments>http://destroytoday.com/blog/2009/11/the-twitter-lists-api-reverse-engineered/#comments</comments>
		<pubDate>Wed, 04 Nov 2009 00:31:04 +0000</pubDate>
		<dc:creator>Jonnie</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[DestroyTwitter]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://destroytoday.com/blog/?p=1406</guid>
		<description><![CDATA[After asking for access to the Twitter Lists API a number of times, I was first turned down and now ignored. Since DestroyTwitter 2.0 is starting to take shape, I want to make sure it includes Lists, but the lack of API access is a big roadblock. Since Twitter stopped listening, I decided to do [...]]]></description>
			<content:encoded><![CDATA[<p>After asking for access to the Twitter Lists API a number of times, I was first turned down and now ignored. Since DestroyTwitter 2.0 is starting to take shape, I want to make sure it includes Lists, but the lack of API access is a big roadblock. Since Twitter stopped listening, I decided to do a bit of reverse engineering to find out what the available methods are. Here is what I found:</p>
<h4>https://twitter.com/[username]/lists.xml</h4>
<p>This method returns an array of the specified user&#8217;s lists. It includes details about each list (id, name, subscribers, etc) and alsothe return values for the user who created this list. The method utilizes the new cursor format for paging. Example:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
</pre></td><td class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;?xml</span> <span style="color: #000066;">version</span>=<span style="color: #ff0000;">&quot;1.0&quot;</span> <span style="color: #000066;">encoding</span>=<span style="color: #ff0000;">&quot;UTF-8&quot;</span><span style="color: #000000; font-weight: bold;">?&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;lists_list<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;lists</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;array&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;list<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;id<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>640968<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/id<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;name<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Developers<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/name<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;full_name<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>@destroytoday/developers<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/full_name<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;slug<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>developers<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/slug<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;subscriber_count<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>0<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/subscriber_count<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;member_count<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>22<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/member_count<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;uri<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>/destroytoday/developers<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/uri<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;mode<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>private<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/mode<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;user<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;id<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>14839458<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/id<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;name<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Jonnie Hallman<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/name<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;screen_name<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>destroytoday<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/screen_name<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;location<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Baltimore, MD<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/location<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;description<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Founder of Destroy Today. Developer of DestroyFlickr and DestroyTwitter. Experience Designer at Adobe.<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/description<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;profile_image_url<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>http://a3.twimg.com/profile_images/124402983/about-1_normal.jpg<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/profile_image_url<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;url<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>http://www.destroytoday.com<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/url<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;protected<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>false<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/protected<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;followers_count<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>3328<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/followers_count<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;profile_background_color<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>222222<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/profile_background_color<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;profile_text_color<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>AAADB6<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/profile_text_color<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;profile_link_color<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>00728F<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/profile_link_color<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;profile_sidebar_fill_color<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>222222<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/profile_sidebar_fill_color<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;profile_sidebar_border_color<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>222222<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/profile_sidebar_border_color<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;friends_count<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>129<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/friends_count<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;created_at<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Tue May 20 00:08:47 +0000 2008<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/created_at<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;favourites_count<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>122<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/favourites_count<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;utc_offset<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>-18000<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/utc_offset<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;time_zone<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Eastern Time (US <span style="color: #ddbb00;">&amp;amp;</span> Canada)<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/time_zone<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;profile_background_image_url<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>http://s.twimg.com/a/1257191498/images/themes/theme1/bg.png<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/profile_background_image_url<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;profile_background_tile<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>false<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/profile_background_tile<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;statuses_count<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>12148<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/statuses_count<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;notifications<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>false<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/notifications<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;geo_enabled<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>false<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/geo_enabled<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;verified<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>false<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/verified<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;following<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>false<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/following<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/user<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/list<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/lists<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;next_cursor<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>0<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/next_cursor<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;previous_cursor<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>0<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/previous_cursor<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/lists_list<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></td></tr></table></div>

<p><br/></p>
<h4>https://twitter.com/[username]/lists/subscriptions.xml</h4>
<p>This method is the same setup as the previous method in that it returns an array of lists, but this is for lists that the user is following besides his own. Example:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
</pre></td><td class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;?xml</span> <span style="color: #000066;">version</span>=<span style="color: #ff0000;">&quot;1.0&quot;</span> <span style="color: #000066;">encoding</span>=<span style="color: #ff0000;">&quot;UTF-8&quot;</span><span style="color: #000000; font-weight: bold;">?&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;lists_list<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;lists</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;array&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;list<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;id<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>1142867<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/id<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;name<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Flash devs not to follow<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/name<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;full_name<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>@TheFlashBum/flash-devs-not-to-follow<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/full_name<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;slug<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>flash-devs-not-to-follow<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/slug<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;subscriber_count<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>1<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/subscriber_count<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;member_count<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>8<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/member_count<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;uri<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>/TheFlashBum/flash-devs-not-to-follow<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/uri<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;mode<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>public<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/mode<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;user<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;id<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>26755983<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/id<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;name<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Jesse Freeman<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/name<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;screen_name<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>TheFlashBum<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/screen_name<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;location<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>NYC<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/location<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;description<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>I am a homeless Flash Developer<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/description<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;profile_image_url<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>http://a1.twimg.com/profile_images/475933036/flashbum_bio_normal.jpg<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/profile_image_url<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;url<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>http://flashbum.com<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/url<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;protected<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>false<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/protected<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;followers_count<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>1146<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/followers_count<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;profile_background_color<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>1A1B1F<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/profile_background_color<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;profile_text_color<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>666666<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/profile_text_color<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;profile_link_color<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>2FC2EF<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/profile_link_color<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;profile_sidebar_fill_color<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>252429<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/profile_sidebar_fill_color<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;profile_sidebar_border_color<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>181A1E<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/profile_sidebar_border_color<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;friends_count<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>198<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/friends_count<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;created_at<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Thu Mar 26 14:07:20 +0000 2009<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/created_at<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;favourites_count<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>140<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/favourites_count<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;utc_offset<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>-18000<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/utc_offset<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;time_zone<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Eastern Time (US <span style="color: #ddbb00;">&amp;amp;</span> Canada)<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/time_zone<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;profile_background_image_url<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>http://s.twimg.com/a/1257210731/images/themes/theme9/bg.gif<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/profile_background_image_url<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;profile_background_tile<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>false<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/profile_background_tile<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;statuses_count<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>4186<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/statuses_count<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;notifications<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>false<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/notifications<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;geo_enabled<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>false<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/geo_enabled<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;verified<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>false<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/verified<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;following<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>true<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/following<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/user<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/list<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/lists<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;next_cursor<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>0<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/next_cursor<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;previous_cursor<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>0<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/previous_cursor<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/lists_list<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></td></tr></table></div>

<p><br/></p>
<h4>https://twitter.com/[username]/lists/[listname]/statuses.xml</h4>
<p>This is the statuses method for a specific list. This is the same as any other statuses method. It includes the <em>count</em>, <em>page</em>, <em>max_id</em>, and <em>since_id</em> parameters. I haven&#8217;t tested for any others than those. Example:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
</pre></td><td class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;?xml</span> <span style="color: #000066;">version</span>=<span style="color: #ff0000;">&quot;1.0&quot;</span> <span style="color: #000066;">encoding</span>=<span style="color: #ff0000;">&quot;UTF-8&quot;</span><span style="color: #000000; font-weight: bold;">?&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;statuses</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;array&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;status<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;created_at<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Tue Nov 03 23:35:59 +0000 2009<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/created_at<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;id<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>5405262473<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/id<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;text<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>AT<span style="color: #ddbb00;">&amp;amp;</span>T complaining about Verizon ad accurately portraying the piss-poor suckiness of their service in 98% of the country: http://bit.ly/e4ieH<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/text<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;source<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><span style="color: #ddbb00;">&amp;lt;</span>a href=<span style="color: #ddbb00;">&amp;quot;</span>http://destroytwitter.com/<span style="color: #ddbb00;">&amp;quot;</span> rel=<span style="color: #ddbb00;">&amp;quot;</span>nofollow<span style="color: #ddbb00;">&amp;quot;&amp;gt;</span>DestroyTwitter<span style="color: #ddbb00;">&amp;lt;</span>/a<span style="color: #ddbb00;">&amp;gt;</span><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/source<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;truncated<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>false<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/truncated<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;in_reply_to_status_id<span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #000000; font-weight: bold;">&lt;/in_reply_to_status_id<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;in_reply_to_user_id<span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #000000; font-weight: bold;">&lt;/in_reply_to_user_id<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;favorited<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>false<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/favorited<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;in_reply_to_screen_name<span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #000000; font-weight: bold;">&lt;/in_reply_to_screen_name<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;user<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;id<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>14551527<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/id<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;name<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>rjowen<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/name<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;screen_name<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>rjowen<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/screen_name<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;location<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Denver, CO<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/location<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;description<span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #000000; font-weight: bold;">&lt;/description<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;profile_image_url<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>http://a3.twimg.com/profile_images/494903369/twitter_normal.jpg<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/profile_image_url<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;url<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>http://rjria.blogspot.com<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/url<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;protected<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>false<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/protected<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;followers_count<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>318<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/followers_count<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;profile_background_color<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>1A1B1F<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/profile_background_color<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;profile_text_color<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>666666<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/profile_text_color<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;profile_link_color<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>2FC2EF<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/profile_link_color<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;profile_sidebar_fill_color<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>252429<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/profile_sidebar_fill_color<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;profile_sidebar_border_color<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>181A1E<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/profile_sidebar_border_color<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;friends_count<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>176<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/friends_count<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;created_at<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Sat Apr 26 21:06:42 +0000 2008<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/created_at<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;favourites_count<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>8<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/favourites_count<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;utc_offset<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>-25200<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/utc_offset<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;time_zone<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Mountain Time (US <span style="color: #ddbb00;">&amp;amp;</span> Canada)<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/time_zone<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;profile_background_image_url<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>http://a1.twimg.com/profile_background_images/4099338/IMG_0224.JPG<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/profile_background_image_url<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;profile_background_tile<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>false<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/profile_background_tile<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;statuses_count<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>1801<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/statuses_count<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;notifications<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>false<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/notifications<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;geo_enabled<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>false<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/geo_enabled<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;verified<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>false<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/verified<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;following<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>false<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/following<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/user<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;geo</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/status<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></td></tr></table></div>

<p><br/></p>
<h4>https://twitter.com/[username]/lists/[listname]/members.xml</h4>
<p>Lastly, the method for adding a user to a list. It looks like a user can be added simply by including the user&#8217;s id in the <em>id</em> parameter. The result is the same as <em>lists.xml</em>. This method in particular requires the POST method. Example:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
</pre></td><td class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;?xml</span> <span style="color: #000066;">version</span>=<span style="color: #ff0000;">&quot;1.0&quot;</span> <span style="color: #000066;">encoding</span>=<span style="color: #ff0000;">&quot;UTF-8&quot;</span><span style="color: #000000; font-weight: bold;">?&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;list<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;id<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>640968<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/id<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;name<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Developers<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/name<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;full_name<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>@destroytoday/developers<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/full_name<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;slug<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>developers<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/slug<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;subscriber_count<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>0<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/subscriber_count<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;member_count<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>22<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/member_count<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;uri<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>/destroytoday/developers<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/uri<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;mode<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>private<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/mode<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;user<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;id<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>14839458<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/id<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;name<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Jonnie Hallman<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/name<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;screen_name<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>destroytoday<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/screen_name<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;location<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Baltimore, MD<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/location<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;description<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Founder of Destroy Today. Developer of DestroyFlickr and DestroyTwitter. Experience Designer at Adobe.<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/description<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;profile_image_url<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>http://a3.twimg.com/profile_images/124402983/about-1_normal.jpg<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/profile_image_url<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;url<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>http://www.destroytoday.com<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/url<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;protected<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>false<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/protected<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;followers_count<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>3330<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/followers_count<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;profile_background_color<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>222222<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/profile_background_color<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;profile_text_color<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>AAADB6<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/profile_text_color<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;profile_link_color<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>00728F<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/profile_link_color<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;profile_sidebar_fill_color<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>222222<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/profile_sidebar_fill_color<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;profile_sidebar_border_color<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>222222<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/profile_sidebar_border_color<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;friends_count<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>129<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/friends_count<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;created_at<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Tue May 20 00:08:47 +0000 2008<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/created_at<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;favourites_count<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>122<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/favourites_count<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;utc_offset<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>-18000<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/utc_offset<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;time_zone<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Eastern Time (US <span style="color: #ddbb00;">&amp;amp;</span> Canada)<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/time_zone<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;profile_background_image_url<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>http://s.twimg.com/a/1257288876/images/themes/theme1/bg.png<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/profile_background_image_url<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;profile_background_tile<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>false<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/profile_background_tile<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;statuses_count<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>12159<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/statuses_count<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;notifications<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>false<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/notifications<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;geo_enabled<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>false<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/geo_enabled<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;verified<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>false<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/verified<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;following<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>false<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/following<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/user<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/list<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></td></tr></table></div>

<p>In conclusion, I must say it&#8217;s pretty sad that an experienced Twitter developer needs to dig through the <em>accepted</em> developers&#8217; work to be able to use the same features. I know Lists are new, but DestroyTwitter has been out far longer than the app I got this from. Also, the retweet and geo-location APIs have been public for months now, though the features aren&#8217;t completely implemented. DestroyTwitter doesn&#8217;t have millions of dollars worth of funding to bring to the table, but it has a pretty passionate developer who wants the latest features for his users.</p>
<p><span class="blue">[update]</span> Thanks to Lim CHee Aun, who referred me to the <a href="http://groups.google.com/group/twitter-development-talk/browse_thread/thread/617bdef9f6b08372/d3c06fcd5b4affbe" target="_blank">draft documentation</a> for Lists. It reveals a few more methods, including the creation and destruction of lists. The API URLs differ quite a bit from the Twitter API, using POST, DELETE, and GET with the same URL to create, delete, and return a list respectively. In the Twitter API, <em>create</em> and <em>destroy</em> are included in the URL itself. I&#8217;m hoping for the ability to bulk add/remove users to/from lists. That would seriously alleviate pressure from the hundreds of calls it would take otherwise.</p>
]]></content:encoded>
			<wfw:commentRss>http://destroytoday.com/blog/2009/11/the-twitter-lists-api-reverse-engineered/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>DestroyTwitter + Twitter = @destroytwitter</title>
		<link>http://destroytoday.com/blog/2009/09/destroytwitter-twitter-destroytwitter/</link>
		<comments>http://destroytoday.com/blog/2009/09/destroytwitter-twitter-destroytwitter/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 21:34:05 +0000</pubDate>
		<dc:creator>Jonnie</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Announcement]]></category>
		<category><![CDATA[DestroyTwitter]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://destroytoday.com/blog/?p=1282</guid>
		<description><![CDATA[
DestroyTwitter is finally on Twitter. For the past nine months, I&#8217;ve used my personal Twitter account (@destroytoday) to post news and respond to feedback. That&#8217;s all fine by me, but I figured an account of its own would make things more official. Lots of people asked how I was able to get an account with [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://twitter.com/destroytwitter" target="_blank"><img class="alignnone size-full wp-image-1283" title="DestroyTwitter twitter account" src="http://destroytoday.com/blog/wp-content/uploads/2009/09/destroytwitter_twitter_account.jpg" alt="DestroyTwitter twitter account" width="450" height="164" /></a></p>
<p><a href="http://destroytwitter.com/" target="_blank">DestroyTwitter</a> is finally on <a href="http://twitter.com/" target="_blank">Twitter</a>. For the past nine months, I&#8217;ve used my personal Twitter account (<a href="http://twitter.com/destroytoday" target="_blank">@destroytoday</a>) to post news and respond to feedback. That&#8217;s all fine by me, but I figured an account of its own would make things more official. Lots of people asked how I was able to get an account with the word &#8220;Twitter&#8221; in the name. In all honesty, I simply asked. Since DestroyTwitter has been around for a while (for a Twitter app), they were able to make an exception. If you haven&#8217;t done so already, go ahead and follow the <a href="http://twitter.com/destroytwitter" target="_blank">@destroytwitter</a> account—and keep an eye out over the next few weeks.</p>
]]></content:encoded>
			<wfw:commentRss>http://destroytoday.com/blog/2009/09/destroytwitter-twitter-destroytwitter/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Twitter quietly ups the API limit to 150</title>
		<link>http://destroytoday.com/blog/2009/07/twitter-quietly-ups-the-api-limit-to-150/</link>
		<comments>http://destroytoday.com/blog/2009/07/twitter-quietly-ups-the-api-limit-to-150/#comments</comments>
		<pubDate>Thu, 02 Jul 2009 04:11:23 +0000</pubDate>
		<dc:creator>Jonnie</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://destroytoday.com/blog/?p=628</guid>
		<description><![CDATA[
Christmas comes early as Twitter ups the API limit to 150 from 100. What does this mean?—more frequent canvas refreshes for users and a little breathing room for developers. I&#8217;m still holding out for unlimited API calls, but I know that will always be a dream.
]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-629 frame" title="Twitter API limit up to 150" src="http://destroytoday.com/blog/wp-content/uploads/2009/07/150apilimit.gif" alt="Twitter API limit up to 150" width="450" height="200" /></p>
<p>Christmas comes early as Twitter ups the API limit to 150 from 100. What does this mean?—more frequent canvas refreshes for users and a little breathing room for developers. I&#8217;m still holding out for unlimited API calls, but I know that will always be a dream.</p>
]]></content:encoded>
			<wfw:commentRss>http://destroytoday.com/blog/2009/07/twitter-quietly-ups-the-api-limit-to-150/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
