<?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: Create a group Twitter account</title>
	<atom:link href="http://www.hilarymason.com/blog/create-a-group-twitter-account/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.hilarymason.com/blog/create-a-group-twitter-account/</link>
	<description>I&#039;m a computer science professor, data scientist, and web geek.</description>
	<lastBuildDate>Mon, 26 Jul 2010 11:30:00 -0400</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Nick Davis</title>
		<link>http://www.hilarymason.com/blog/create-a-group-twitter-account/comment-page-1/#comment-291</link>
		<dc:creator>Nick Davis</dc:creator>
		<pubDate>Mon, 15 Dec 2008 14:57:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.3greeneggs.com/wp/web-dev/create-a-group-twitter-account/#comment-291</guid>
		<description>Hey guys - just wanted to let you know I recently created a service to do exactly this:

http://twittbot.com</description>
		<content:encoded><![CDATA[<p>Hey guys &#8211; just wanted to let you know I recently created a service to do exactly this:</p>
<p><a href="http://twittbot.com" rel="nofollow">http://twittbot.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Satjot</title>
		<link>http://www.hilarymason.com/blog/create-a-group-twitter-account/comment-page-1/#comment-205</link>
		<dc:creator>Satjot</dc:creator>
		<pubDate>Tue, 28 Oct 2008 20:05:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.3greeneggs.com/wp/web-dev/create-a-group-twitter-account/#comment-205</guid>
		<description>That is very cool.

I&#039;ve been working on a project to solve the same problem: how can groups use a twitter-like service, effectively and simply.

The site is www.buzzable.com - currently in Beta.

Specifically, for Shai Gluskin, you can simply create crime-watchers hub, and post into that hub from the web and/or your mobile phone.  You can get sms updates from this hub.

Thanks for the discussion guys.</description>
		<content:encoded><![CDATA[<p>That is very cool.</p>
<p>I&#8217;ve been working on a project to solve the same problem: how can groups use a twitter-like service, effectively and simply.</p>
<p>The site is <a href="http://www.buzzable.com" rel="nofollow">http://www.buzzable.com</a> &#8211; currently in Beta.</p>
<p>Specifically, for Shai Gluskin, you can simply create crime-watchers hub, and post into that hub from the web and/or your mobile phone.  You can get sms updates from this hub.</p>
<p>Thanks for the discussion guys.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bijon</title>
		<link>http://www.hilarymason.com/blog/create-a-group-twitter-account/comment-page-1/#comment-203</link>
		<dc:creator>bijon</dc:creator>
		<pubDate>Sat, 25 Oct 2008 21:57:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.3greeneggs.com/wp/web-dev/create-a-group-twitter-account/#comment-203</guid>
		<description>Very cool article. It will be help to do a project using Twitter API.</description>
		<content:encoded><![CDATA[<p>Very cool article. It will be help to do a project using Twitter API.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shai Gluskin</title>
		<link>http://www.hilarymason.com/blog/create-a-group-twitter-account/comment-page-1/#comment-112</link>
		<dc:creator>Shai Gluskin</dc:creator>
		<pubDate>Tue, 17 Jun 2008 02:07:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.3greeneggs.com/wp/web-dev/create-a-group-twitter-account/#comment-112</guid>
		<description>I&#039;m really excited now. Between Drupal&#039;s twitter module and the code posted here by Holly, I can create a community crime reporting Twitter in which Twitter members, as well as non-Twitterers (via the Drupal site) will be able to create posts to the twitter.

Sometimes things just all come together.

Shai</description>
		<content:encoded><![CDATA[<p>I&#8217;m really excited now. Between Drupal&#8217;s twitter module and the code posted here by Holly, I can create a community crime reporting Twitter in which Twitter members, as well as non-Twitterers (via the Drupal site) will be able to create posts to the twitter.</p>
<p>Sometimes things just all come together.</p>
<p>Shai</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shai Gluskin</title>
		<link>http://www.hilarymason.com/blog/create-a-group-twitter-account/comment-page-1/#comment-113</link>
		<dc:creator>Shai Gluskin</dc:creator>
		<pubDate>Mon, 16 Jun 2008 20:56:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.3greeneggs.com/wp/web-dev/create-a-group-twitter-account/#comment-113</guid>
		<description>Hilary,

Thanks much. It seems like the auto-friending should be part of the API, but oh well, not terrible.

I had to adjust the code a tad to make it run off of my server. The Boolien in response to &quot;if&quot; testing if the message had the right tag would always return false.

I&#039;m running php off a mosso.com server which runs PHP Version 5.2.0-8+etch5~pu1. That&#039;s a mouthful.

Here is what I did.

Original code:
&lt;code&gt;if (stripos($post[‘text’],$tag)) {&lt;/code&gt;

What I did to make it work (for me)
&lt;code&gt;$tagexists = stripos($post[&#039;text&#039;], $tag);
  if ($tagexists !== false) {&lt;/code&gt;

Hmmm, it seems like it should work either way!

This is great stuff. Twitter has so much potential. I&#039;m going to use this for a group crime reporting Twitter for my neighborhood.

All the best,

Shai</description>
		<content:encoded><![CDATA[<p>Hilary,</p>
<p>Thanks much. It seems like the auto-friending should be part of the API, but oh well, not terrible.</p>
<p>I had to adjust the code a tad to make it run off of my server. The Boolien in response to &#8220;if&#8221; testing if the message had the right tag would always return false.</p>
<p>I&#8217;m running php off a mosso.com server which runs PHP Version 5.2.0-8+etch5~pu1. That&#8217;s a mouthful.</p>
<p>Here is what I did.</p>
<p>Original code:<br />
<code>if (stripos($post[‘text’],$tag)) {</code></p>
<p>What I did to make it work (for me)<br />
<code>$tagexists = stripos($post['text'], $tag);<br />
  if ($tagexists !== false) {</code></p>
<p>Hmmm, it seems like it should work either way!</p>
<p>This is great stuff. Twitter has so much potential. I&#8217;m going to use this for a group crime reporting Twitter for my neighborhood.</p>
<p>All the best,</p>
<p>Shai</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hilary</title>
		<link>http://www.hilarymason.com/blog/create-a-group-twitter-account/comment-page-1/#comment-116</link>
		<dc:creator>Hilary</dc:creator>
		<pubDate>Mon, 16 Jun 2008 19:26:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.3greeneggs.com/wp/web-dev/create-a-group-twitter-account/#comment-116</guid>
		<description>Hi Shai,

The group twitter user will only pull tweets from the people that it is following. You should log in and have that user follow the set of twitter users you would like in the group.

Alternatively, you can e-mail support@twitter.com and ask them to turn on auto-following for your account. That way, you&#039;ll be set up to follow everyone who follows you.

Good luck!

Hilary</description>
		<content:encoded><![CDATA[<p>Hi Shai,</p>
<p>The group twitter user will only pull tweets from the people that it is following. You should log in and have that user follow the set of twitter users you would like in the group.</p>
<p>Alternatively, you can e-mail <a href="mailto:support@twitter.com">support@twitter.com</a> and ask them to turn on auto-following for your account. That way, you&#8217;ll be set up to follow everyone who follows you.</p>
<p>Good luck!</p>
<p>Hilary</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shai Gluskin</title>
		<link>http://www.hilarymason.com/blog/create-a-group-twitter-account/comment-page-1/#comment-114</link>
		<dc:creator>Shai Gluskin</dc:creator>
		<pubDate>Mon, 16 Jun 2008 04:08:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.3greeneggs.com/wp/web-dev/create-a-group-twitter-account/#comment-114</guid>
		<description>Okay, my problem in comment #5 was solved by replacing my email address with my username. I&#039;m used to the two being interchangable, but obviously they are different at Twitter&#039;s db and this code is clearly calling for the username.

Now my problem is that it just doesn&#039;t work. No messages pulled in, but no errors when the script runs :).

I&#039;m confused by this part of the instructions, so maybe that is where the problem is: &quot;# Someone has to log in and manually add followers.&quot;

What?

What I thought that meant is that, in order for a person&#039;s twitters to be posted to the group account, that person needs to sign up as a &quot;follower&quot; of the group account. Please confirm. Then, as long as a person includes the designated tag in the twitter, that post will get reposted, prepended by the person&#039;s Twitter name, to the group twitter.

I presume that the group account does not need to &quot;follow&quot; its followers?

Any insights on the problem would be helpful. This functionality is way cool and very needed.

Shai</description>
		<content:encoded><![CDATA[<p>Okay, my problem in comment #5 was solved by replacing my email address with my username. I&#8217;m used to the two being interchangable, but obviously they are different at Twitter&#8217;s db and this code is clearly calling for the username.</p>
<p>Now my problem is that it just doesn&#8217;t work. No messages pulled in, but no errors when the script runs <img src='http://www.hilarymason.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<p>I&#8217;m confused by this part of the instructions, so maybe that is where the problem is: &#8220;# Someone has to log in and manually add followers.&#8221;</p>
<p>What?</p>
<p>What I thought that meant is that, in order for a person&#8217;s twitters to be posted to the group account, that person needs to sign up as a &#8220;follower&#8221; of the group account. Please confirm. Then, as long as a person includes the designated tag in the twitter, that post will get reposted, prepended by the person&#8217;s Twitter name, to the group twitter.</p>
<p>I presume that the group account does not need to &#8220;follow&#8221; its followers?</p>
<p>Any insights on the problem would be helpful. This functionality is way cool and very needed.</p>
<p>Shai</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shai Gluskin</title>
		<link>http://www.hilarymason.com/blog/create-a-group-twitter-account/comment-page-1/#comment-115</link>
		<dc:creator>Shai Gluskin</dc:creator>
		<pubDate>Mon, 16 Jun 2008 03:14:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.3greeneggs.com/wp/web-dev/create-a-group-twitter-account/#comment-115</guid>
		<description>Hi Hilary,

This is fantastic. I&#039;d love to get this into the current Drupal Twitter module which allows posting to a group Twitter via a Drupal web site. Which is great. But people should be able to post from their own Twitter account to a group or event account as you&#039;ve done here.

I am getting the following error however: &quot;Warning: Invalid argument supplied for foreach()&quot;. I don&#039;t think it is the same problem mentioned above because the file is on a server running Php 5.2.

Any ideas?

thanks,

Shai Gluskin</description>
		<content:encoded><![CDATA[<p>Hi Hilary,</p>
<p>This is fantastic. I&#8217;d love to get this into the current Drupal Twitter module which allows posting to a group Twitter via a Drupal web site. Which is great. But people should be able to post from their own Twitter account to a group or event account as you&#8217;ve done here.</p>
<p>I am getting the following error however: &#8220;Warning: Invalid argument supplied for foreach()&#8221;. I don&#8217;t think it is the same problem mentioned above because the file is on a server running Php 5.2.</p>
<p>Any ideas?</p>
<p>thanks,</p>
<p>Shai Gluskin</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gil Creque</title>
		<link>http://www.hilarymason.com/blog/create-a-group-twitter-account/comment-page-1/#comment-111</link>
		<dc:creator>Gil Creque</dc:creator>
		<pubDate>Tue, 04 Mar 2008 21:08:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.3greeneggs.com/wp/web-dev/create-a-group-twitter-account/#comment-111</guid>
		<description>I found another great article on how to do this

http://www.steveouting.com/group-twittering-instructions.html

One of the main things I read was getting auto-follow turned on by tech support.</description>
		<content:encoded><![CDATA[<p>I found another great article on how to do this</p>
<p><a href="http://www.steveouting.com/group-twittering-instructions.html" rel="nofollow">http://www.steveouting.com/group-twittering-instructions.html</a></p>
<p>One of the main things I read was getting auto-follow turned on by tech support.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hilary</title>
		<link>http://www.hilarymason.com/blog/create-a-group-twitter-account/comment-page-1/#comment-109</link>
		<dc:creator>Hilary</dc:creator>
		<pubDate>Fri, 15 Feb 2008 16:17:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.3greeneggs.com/wp/web-dev/create-a-group-twitter-account/#comment-109</guid>
		<description>Hi Shawn,

The &quot;json_decode&quot; function is part of the standard PHP 5.2 install. Check it out on &lt;a href=&quot;http://us2.php.net/manual/en/function.json-decode.php&quot; rel=&quot;nofollow&quot;&gt;php.net&lt;/a&gt;.

Your programmer can either upgrade PHP, or write her own function to parse the JSON output from the Twitter API. :)

Hilary</description>
		<content:encoded><![CDATA[<p>Hi Shawn,</p>
<p>The &#8220;json_decode&#8221; function is part of the standard PHP 5.2 install. Check it out on <a href="http://us2.php.net/manual/en/function.json-decode.php" rel="nofollow">php.net</a>.</p>
<p>Your programmer can either upgrade PHP, or write her own function to parse the JSON output from the Twitter API. <img src='http://www.hilarymason.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Hilary</p>
]]></content:encoded>
	</item>
</channel>
</rss>
