<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Twitter, Flex and JSON</title>
	<atom:link href="http://blog.log2e.com/2008/05/25/twitter-flex-and-json/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.log2e.com/2008/05/25/twitter-flex-and-json/</link>
	<description>Tutorials and Code Snippets</description>
	<lastBuildDate>Thu, 04 Mar 2010 04:06:48 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Merken</title>
		<link>http://blog.log2e.com/2008/05/25/twitter-flex-and-json/comment-page-1/#comment-325</link>
		<dc:creator>Merken</dc:creator>
		<pubDate>Tue, 19 Jan 2010 15:38:55 +0000</pubDate>
		<guid isPermaLink="false">http://blog.log2e.com/?p=32#comment-325</guid>
		<description>Thank you, i got your example working in Flash Builder 4 Beta 2 with the Flex4.0 SDK.

Instead of using the public_timeline feed, you can use the user timeline : http://twitter.com/statuses/user_timeline.json

This will prompt you to login, however you can send a parameter to view your timeline without logging in.
You can do this by editing this function of yours :

private function loadPublicTimeline():void
				
{
	//For example, screen_name = AdobeSystemsNL
	var screenName:String=&quot;AdobeSystemsNL&quot;;
	twitterService.url=&quot;http://twitter.com/statuses/user_timeline.json?screen_name=&quot;+screenName;
	twitterService.send();
				
}

Nice job!</description>
		<content:encoded><![CDATA[<p>Thank you, i got your example working in Flash Builder 4 Beta 2 with the Flex4.0 SDK.</p>
<p>Instead of using the public_timeline feed, you can use the user timeline : <a href="http://twitter.com/statuses/user_timeline.json" rel="nofollow" onclick="pageTracker._trackPageview('/outgoing/twitter.com/statuses/user_timeline.json?referer=');">http://twitter.com/statuses/user_timeline.json</a></p>
<p>This will prompt you to login, however you can send a parameter to view your timeline without logging in.<br />
You can do this by editing this function of yours :</p>
<p>private function loadPublicTimeline():void</p>
<p>{<br />
	//For example, screen_name = AdobeSystemsNL<br />
	var screenName:String=&#8221;AdobeSystemsNL&#8221;;<br />
	twitterService.url=&#8221;http://twitter.com/statuses/user_timeline.json?screen_name=&#8221;+screenName;<br />
	twitterService.send();</p>
<p>}</p>
<p>Nice job!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bigDizzle</title>
		<link>http://blog.log2e.com/2008/05/25/twitter-flex-and-json/comment-page-1/#comment-280</link>
		<dc:creator>bigDizzle</dc:creator>
		<pubDate>Tue, 16 Jun 2009 03:36:39 +0000</pubDate>
		<guid isPermaLink="false">http://blog.log2e.com/?p=32#comment-280</guid>
		<description>@everyone

Also you can remove /public_timeline...... and replace it with /user_timeline/&quot;twitterid&quot;, replacing twitterid and quotes with your actual twitter ID. Should bring up only your feeds instead of everyone&#039;s. Twitter should remove that cross domain policy, you-tube has it also. It&#039;s a real pain sometimes just to create a simple tool in flex for clients. Then again, flex 3 can become a pain in itself. C&#039;mon Flash Builder 4!</description>
		<content:encoded><![CDATA[<p>@everyone</p>
<p>Also you can remove /public_timeline&#8230;&#8230; and replace it with /user_timeline/&#8221;twitterid&#8221;, replacing twitterid and quotes with your actual twitter ID. Should bring up only your feeds instead of everyone&#8217;s. Twitter should remove that cross domain policy, you-tube has it also. It&#8217;s a real pain sometimes just to create a simple tool in flex for clients. Then again, flex 3 can become a pain in itself. C&#8217;mon Flash Builder 4!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Twitter Search</title>
		<link>http://blog.log2e.com/2008/05/25/twitter-flex-and-json/comment-page-1/#comment-250</link>
		<dc:creator>Twitter Search</dc:creator>
		<pubDate>Wed, 27 May 2009 00:59:31 +0000</pubDate>
		<guid isPermaLink="false">http://blog.log2e.com/?p=32#comment-250</guid>
		<description>thats great that you are talking about the twitter api,a good example of searching with the twitter api is on twiogle.com because you can search on twitter and google at the same time.</description>
		<content:encoded><![CDATA[<p>thats great that you are talking about the twitter api,a good example of searching with the twitter api is on twiogle.com because you can search on twitter and google at the same time.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hannah</title>
		<link>http://blog.log2e.com/2008/05/25/twitter-flex-and-json/comment-page-1/#comment-229</link>
		<dc:creator>Hannah</dc:creator>
		<pubDate>Sun, 22 Mar 2009 19:53:57 +0000</pubDate>
		<guid isPermaLink="false">http://blog.log2e.com/?p=32#comment-229</guid>
		<description>I tried your demo but I&#039;m having problems exporting to bin-release. It works fine when I open the swf from the bin-debug folder but when I try to run it from the bin-release folder, the app launches but there is no content. Is there something I need to do to the compiler properties?</description>
		<content:encoded><![CDATA[<p>I tried your demo but I&#8217;m having problems exporting to bin-release. It works fine when I open the swf from the bin-debug folder but when I try to run it from the bin-release folder, the app launches but there is no content. Is there something I need to do to the compiler properties?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JacobBobby</title>
		<link>http://blog.log2e.com/2008/05/25/twitter-flex-and-json/comment-page-1/#comment-226</link>
		<dc:creator>JacobBobby</dc:creator>
		<pubDate>Wed, 18 Mar 2009 17:58:59 +0000</pubDate>
		<guid isPermaLink="false">http://blog.log2e.com/?p=32#comment-226</guid>
		<description>Is there something more in the php file I&#039;m missing?
When I call the php in firefox it look identical to the original .json file.

I don&#039;t get a security error, but I don&#039;t get tweets either...just a &quot;transferring data&quot; message at the bottom of firefox.

Clearly I not doing something smart here.</description>
		<content:encoded><![CDATA[<p>Is there something more in the php file I&#8217;m missing?<br />
When I call the php in firefox it look identical to the original .json file.</p>
<p>I don&#8217;t get a security error, but I don&#8217;t get tweets either&#8230;just a &#8220;transferring data&#8221; message at the bottom of firefox.</p>
<p>Clearly I not doing something smart here.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hannah</title>
		<link>http://blog.log2e.com/2008/05/25/twitter-flex-and-json/comment-page-1/#comment-225</link>
		<dc:creator>Hannah</dc:creator>
		<pubDate>Sun, 15 Mar 2009 16:44:53 +0000</pubDate>
		<guid isPermaLink="false">http://blog.log2e.com/?p=32#comment-225</guid>
		<description>Thanks, good job!</description>
		<content:encoded><![CDATA[<p>Thanks, good job!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Carlos</title>
		<link>http://blog.log2e.com/2008/05/25/twitter-flex-and-json/comment-page-1/#comment-224</link>
		<dc:creator>Carlos</dc:creator>
		<pubDate>Wed, 11 Mar 2009 14:55:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.log2e.com/?p=32#comment-224</guid>
		<description>This solution is great.
i used it to open my rss.
thanks for sahring :)</description>
		<content:encoded><![CDATA[<p>This solution is great.<br />
i used it to open my rss.<br />
thanks for sahring <img src='http://blog.log2e.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bob Saint Clare</title>
		<link>http://blog.log2e.com/2008/05/25/twitter-flex-and-json/comment-page-1/#comment-213</link>
		<dc:creator>Bob Saint Clare</dc:creator>
		<pubDate>Fri, 06 Feb 2009 07:16:37 +0000</pubDate>
		<guid isPermaLink="false">http://blog.log2e.com/?p=32#comment-213</guid>
		<description>Awesome! Thx</description>
		<content:encoded><![CDATA[<p>Awesome! Thx</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fadi</title>
		<link>http://blog.log2e.com/2008/05/25/twitter-flex-and-json/comment-page-1/#comment-209</link>
		<dc:creator>Fadi</dc:creator>
		<pubDate>Mon, 02 Feb 2009 01:32:15 +0000</pubDate>
		<guid isPermaLink="false">http://blog.log2e.com/?p=32#comment-209</guid>
		<description>I have tried running your demo in flexbuilder 3 but i had the following fault message.
Any idea?
Thank you

*** Violation de la sécurité Sandbox***
Interruption de la connexion à http://twitter.com/statuses/public_timeline.json - opération interdite depuis file:///C:/Users/Flex Project/JSON/Twitter_Flex_JSON/bin-debug/Twitter_Flex_JSON.swf
[RPC Fault faultString=&quot;Security error accessing url&quot; faultCode=&quot;Channel.Security.Error&quot; faultDetail=&quot;Destination: DefaultHTTP&quot;]</description>
		<content:encoded><![CDATA[<p>I have tried running your demo in flexbuilder 3 but i had the following fault message.<br />
Any idea?<br />
Thank you</p>
<p>*** Violation de la sécurité Sandbox***<br />
Interruption de la connexion à <a href="http://twitter.com/statuses/public_timeline.json" rel="nofollow" onclick="pageTracker._trackPageview('/outgoing/twitter.com/statuses/public_timeline.json?referer=');">http://twitter.com/statuses/public_timeline.json</a> &#8211; opération interdite depuis file:///C:/Users/Flex Project/JSON/Twitter_Flex_JSON/bin-debug/Twitter_Flex_JSON.swf<br />
[RPC Fault faultString="Security error accessing url" faultCode="Channel.Security.Error" faultDetail="Destination: DefaultHTTP"]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pierro</title>
		<link>http://blog.log2e.com/2008/05/25/twitter-flex-and-json/comment-page-1/#comment-102</link>
		<dc:creator>Pierro</dc:creator>
		<pubDate>Thu, 11 Dec 2008 04:37:06 +0000</pubDate>
		<guid isPermaLink="false">http://blog.log2e.com/?p=32#comment-102</guid>
		<description>Looks so damn great ...  i will try it.
Thanks for sharing</description>
		<content:encoded><![CDATA[<p>Looks so damn great &#8230;  i will try it.<br />
Thanks for sharing</p>
]]></content:encoded>
	</item>
</channel>
</rss>
