<?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: Use PHP to Twitter Your Tweets</title>
	<atom:link href="http://www.brownphp.com/2009/01/use-php-to-twitter-your-tweets/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.brownphp.com/2009/01/use-php-to-twitter-your-tweets/</link>
	<description>Created and Designed for Object Oriented PHP and Web Developers</description>
	<lastBuildDate>Wed, 23 Nov 2011 08:18:10 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Kugenie</title>
		<link>http://www.brownphp.com/2009/01/use-php-to-twitter-your-tweets/comment-page-1/#comment-20963</link>
		<dc:creator>Kugenie</dc:creator>
		<pubDate>Sat, 30 Jul 2011 17:36:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.brownphp.com/?p=119#comment-20963</guid>
		<description>&lt;strong&gt;really good article...&lt;/strong&gt;

I have spent a bit of time going through your posts, more than I should have but I must say, http://destiny.blog-host.nl/yves_saint_laurent_died_aback_he_is_no_best_the_complete_t_stage_amazing_perform_-177749.html, many Thanks....</description>
		<content:encoded><![CDATA[<p><strong>really good article&#8230;</strong></p>
<p>I have spent a bit of time going through your posts, more than I should have but I must say, <a href="http://destiny.blog-host.nl/yves_saint_laurent_died_aback_he_is_no_best_the_complete_t_stage_amazing_perform_-177749.html" rel="nofollow">http://destiny.blog-host.nl/yves_saint_laurent_died_aback_he_is_no_best_the_complete_t_stage_amazing_perform_-177749.html</a>, many Thanks&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ehantelle</title>
		<link>http://www.brownphp.com/2009/01/use-php-to-twitter-your-tweets/comment-page-1/#comment-18644</link>
		<dc:creator>Ehantelle</dc:creator>
		<pubDate>Fri, 08 Jul 2011 17:29:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.brownphp.com/?p=119#comment-18644</guid>
		<description>&lt;strong&gt;Nice...&lt;/strong&gt;

hello,very cool. http://akocxzeykz.emailmeforeclosures.com/2011/07/07/long-dresses-for-women-can-be-purchased-in-many-o/ ,nice to meet you...</description>
		<content:encoded><![CDATA[<p><strong>Nice&#8230;</strong></p>
<p>hello,very cool. <a href="http://akocxzeykz.emailmeforeclosures.com/2011/07/07/long-dresses-for-women-can-be-purchased-in-many-o/" rel="nofollow">http://akocxzeykz.emailmeforeclosures.com/2011/07/07/long-dresses-for-women-can-be-purchased-in-many-o/</a> ,nice to meet you&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bruce</title>
		<link>http://www.brownphp.com/2009/01/use-php-to-twitter-your-tweets/comment-page-1/#comment-13098</link>
		<dc:creator>Bruce</dc:creator>
		<pubDate>Tue, 16 Nov 2010 17:13:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.brownphp.com/?p=119#comment-13098</guid>
		<description>Krishna...look at the post before yours...a link to an update about using the new(er) Twitter requirements for oauth... </description>
		<content:encoded><![CDATA[<p>Krishna&#8230;look at the post before yours&#8230;a link to an update about using the new(er) Twitter requirements for oauth&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Krishna</title>
		<link>http://www.brownphp.com/2009/01/use-php-to-twitter-your-tweets/comment-page-1/#comment-12931</link>
		<dc:creator>Krishna</dc:creator>
		<pubDate>Wed, 22 Sep 2010 07:07:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.brownphp.com/?p=119#comment-12931</guid>
		<description>$twitter_api_url = &quot;http://twitter.com/statuses/update.xml&quot;; 
$twitter_data = &quot;status=hi guys&quot;; 
$twitter_user = &quot;username&quot;; 
$twitter_password = &quot;password&quot;; 
$ch = curl_init($twitter_api_url); 
curl_setopt($ch, CURLOPT_POST, 1); 
curl_setopt($ch, CURLOPT_POSTFIELDS, $twitter_data); 
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); 
curl_setopt($ch, CURLOPT_HEADER, 0); 
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 
curl_setopt($ch, CURLOPT_USERPWD, &quot;{$twitter_user}:{$twitter_password}&quot;); 
$twitter_data = curl_exec($ch); 
$httpcode = curl_getinfo($ch, CURLINFO_HTTP_CODE); 
curl_close($ch); 
//print_r($httpcode); 
if ($httpcode != 200) { 
echo &quot;&lt;strong&gt;Don&#039;t Panic!&lt;/strong&gt; Something went wrong, and the tweet wasn&#039;t posted correctly.&quot;; 
} 
else 
{ 
echo &#039;Congrats it is succesfully posted&#039;; 
} 
any one help me.. I have used the above code but it is not posting the messages in the twitter. It is returning 401 as httpcode value. Please help me. </description>
		<content:encoded><![CDATA[<p>$twitter_api_url = &quot;<a href="http://twitter.com/statuses/update.xml&quot;" rel="nofollow">http://twitter.com/statuses/update.xml&quot;</a>;<br />
$twitter_data = &quot;status=hi guys&quot;;<br />
$twitter_user = &quot;username&quot;;<br />
$twitter_password = &quot;password&quot;;<br />
$ch = curl_init($twitter_api_url);<br />
curl_setopt($ch, CURLOPT_POST, 1);<br />
curl_setopt($ch, CURLOPT_POSTFIELDS, $twitter_data);<br />
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);<br />
curl_setopt($ch, CURLOPT_HEADER, 0);<br />
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);<br />
curl_setopt($ch, CURLOPT_USERPWD, &quot;{$twitter_user}:{$twitter_password}&quot;);<br />
$twitter_data = curl_exec($ch);<br />
$httpcode = curl_getinfo($ch, CURLINFO_HTTP_CODE);<br />
curl_close($ch);<br />
//print_r($httpcode);<br />
if ($httpcode != 200) {<br />
echo &quot;<strong>Don&#039;t Panic!</strong> Something went wrong, and the tweet wasn&#039;t posted correctly.&quot;;<br />
}<br />
else<br />
{<br />
echo &#039;Congrats it is succesfully posted&#039;;<br />
}<br />
any one help me.. I have used the above code but it is not posting the messages in the twitter. It is returning 401 as httpcode value. Please help me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dlbrown06</title>
		<link>http://www.brownphp.com/2009/01/use-php-to-twitter-your-tweets/comment-page-1/#comment-12892</link>
		<dc:creator>dlbrown06</dc:creator>
		<pubDate>Fri, 17 Sep 2010 01:14:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.brownphp.com/?p=119#comment-12892</guid>
		<description>Okay guys, I made a new update.  &lt;a href=&quot;http://www.brownphp.com/2010/09/php-twitter-oauth/&quot; rel=&quot;nofollow&quot;&gt;http://www.brownphp.com/2010/09/php-twitter-oauth...&lt;/a&gt; has a tutorial going through the new authentication method. </description>
		<content:encoded><![CDATA[<p>Okay guys, I made a new update.  <a href="http://www.brownphp.com/2010/09/php-twitter-oauth/" rel="nofollow">http://www.brownphp.com/2010/09/php-twitter-oauth&#8230;</a> has a tutorial going through the new authentication method.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: iPhone apps</title>
		<link>http://www.brownphp.com/2009/01/use-php-to-twitter-your-tweets/comment-page-1/#comment-12850</link>
		<dc:creator>iPhone apps</dc:creator>
		<pubDate>Thu, 16 Sep 2010 15:29:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.brownphp.com/?p=119#comment-12850</guid>
		<description>don&#039;t work </description>
		<content:encoded><![CDATA[<p>don&#039;t work</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BlaM</title>
		<link>http://www.brownphp.com/2009/01/use-php-to-twitter-your-tweets/comment-page-1/#comment-12018</link>
		<dc:creator>BlaM</dc:creator>
		<pubDate>Thu, 09 Sep 2010 13:29:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.brownphp.com/?p=119#comment-12018</guid>
		<description>For everyone trying this now: Twitter needs another method of authentication (OAuth), so this code will not work anymore :( </description>
		<content:encoded><![CDATA[<p>For everyone trying this now: Twitter needs another method of authentication (OAuth), so this code will not work anymore <img src='http://www.brownphp.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dlbrown06</title>
		<link>http://www.brownphp.com/2009/01/use-php-to-twitter-your-tweets/comment-page-1/#comment-11932</link>
		<dc:creator>dlbrown06</dc:creator>
		<pubDate>Thu, 09 Sep 2010 01:00:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.brownphp.com/?p=119#comment-11932</guid>
		<description>Yeah, Twitter made it super complicated to do something that should be so easy.  Sometimes I have to give a big thumbs down to following the &quot;crowd&quot; for authentication...  Hopefully when I get some free time I&#039;ll update this post with a link to a new tutorial and sample code for using OAuth.  </description>
		<content:encoded><![CDATA[<p>Yeah, Twitter made it super complicated to do something that should be so easy.  Sometimes I have to give a big thumbs down to following the &quot;crowd&quot; for authentication&#8230;  Hopefully when I get some free time I&#039;ll update this post with a link to a new tutorial and sample code for using OAuth.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://www.brownphp.com/2009/01/use-php-to-twitter-your-tweets/comment-page-1/#comment-11856</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Wed, 08 Sep 2010 13:15:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.brownphp.com/?p=119#comment-11856</guid>
		<description>Unfortunately in august the easy authentication for Twitter ended.  
Now they wrote pages on pages of complicated API documentation referring to itself all the time and never actually clarifying how to send a simple tweet.  
It&#039;s now using &#039;OAuth&#039; and i&#039;ve never been violent but they&#039;ld better not come near me now. 
 
In short: the example script will not work due to changes at Twitter and basically: forget it. </description>
		<content:encoded><![CDATA[<p>Unfortunately in august the easy authentication for Twitter ended.<br />
Now they wrote pages on pages of complicated API documentation referring to itself all the time and never actually clarifying how to send a simple tweet.<br />
It&#039;s now using &#039;OAuth&#039; and i&#039;ve never been violent but they&#039;ld better not come near me now. </p>
<p>In short: the example script will not work due to changes at Twitter and basically: forget it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: crisy</title>
		<link>http://www.brownphp.com/2009/01/use-php-to-twitter-your-tweets/comment-page-1/#comment-11740</link>
		<dc:creator>crisy</dc:creator>
		<pubDate>Tue, 07 Sep 2010 16:53:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.brownphp.com/?p=119#comment-11740</guid>
		<description>it wont work coz twitter needs Oauth now ..plzz update code thanks </description>
		<content:encoded><![CDATA[<p>it wont work coz twitter needs Oauth now ..plzz update code thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>

