<?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: monkehTweets ColdFusion Twitter CFC</title>
	<atom:link href="http://www.mattgifford.co.uk/monkehtweets-coldfusion-twitter-cfc/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mattgifford.co.uk/monkehtweets-coldfusion-twitter-cfc/</link>
	<description>Matt Gifford AKA ColdFuMonkeh - ColdFusion, CFML, jQuery and web development</description>
	<lastBuildDate>Thu, 02 Sep 2010 12:50:01 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Matt</title>
		<link>http://www.mattgifford.co.uk/monkehtweets-coldfusion-twitter-cfc/comment-page-1/#comment-8381</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Thu, 02 Sep 2010 11:40:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.mattgifford.co.uk/?p=838#comment-8381</guid>
		<description>Hi Frank

thanks for your message.

Twitter have now removed the basic authentication protocol, which was built into monkehTweets, and have replaced it completely with the oAuth protocol, which is the reason for the errors.

I&#039;m updating the library now, and will release the revised packages as soon as possible.

Apologies to everyone for any inconvenience caused.</description>
		<content:encoded><![CDATA[<p>Hi Frank</p>
<p>thanks for your message.</p>
<p>Twitter have now removed the basic authentication protocol, which was built into monkehTweets, and have replaced it completely with the oAuth protocol, which is the reason for the errors.</p>
<p>I&#8217;m updating the library now, and will release the revised packages as soon as possible.</p>
<p>Apologies to everyone for any inconvenience caused.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Frank</title>
		<link>http://www.mattgifford.co.uk/monkehtweets-coldfusion-twitter-cfc/comment-page-1/#comment-8379</link>
		<dc:creator>Frank</dc:creator>
		<pubDate>Thu, 02 Sep 2010 11:02:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.mattgifford.co.uk/?p=838#comment-8379</guid>
		<description>Hello 

I get the following error;

401 Unauthorized - Authentication credentials were missing or incorrect.  
 
 
// instantiating the facade, but this time
// requesting structural data response
objMonkehTweet = createObject(&#039;component&#039;,
        &#039;com.coldfumonkeh.monkehTweet&#039;).init(&#039;fccnuland&#039;,&#039;12345678&#039;,true);
// make a call to get user details and return data in XML format
result = objMonkehTweet.getUserDetails(id=&#039;coldfumonkeh&#039;);

</description>
		<content:encoded><![CDATA[<p>Hello </p>
<p>I get the following error;</p>
<p>401 Unauthorized &#8211; Authentication credentials were missing or incorrect.  </p>
<p>// instantiating the facade, but this time<br />
// requesting structural data response<br />
objMonkehTweet = createObject(&#8216;component&#8217;,<br />
        &#8216;com.coldfumonkeh.monkehTweet&#8217;).init(&#8216;fccnuland&#8217;,'12345678&#8242;,true);<br />
// make a call to get user details and return data in XML format<br />
result = objMonkehTweet.getUserDetails(id=&#8217;coldfumonkeh&#8217;);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt</title>
		<link>http://www.mattgifford.co.uk/monkehtweets-coldfusion-twitter-cfc/comment-page-1/#comment-4807</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Mon, 12 Jul 2010 15:53:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.mattgifford.co.uk/?p=838#comment-4807</guid>
		<description>Hi Dave

Thank you for your comment, and it&#039;s always great to hear from people using the wrappers.

II must say that i haven&#039;t had any issues with clashes between the returnType specified in the init method (com.coldfumonkeh.monkehTweet) or any per-application mappings.

Feel free to email me directly and we&#039;ll get to bottom of it together if you&#039;re still having any issues.</description>
		<content:encoded><![CDATA[<p>Hi Dave</p>
<p>Thank you for your comment, and it&#8217;s always great to hear from people using the wrappers.</p>
<p>II must say that i haven&#8217;t had any issues with clashes between the returnType specified in the init method (com.coldfumonkeh.monkehTweet) or any per-application mappings.</p>
<p>Feel free to email me directly and we&#8217;ll get to bottom of it together if you&#8217;re still having any issues.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave Phipps</title>
		<link>http://www.mattgifford.co.uk/monkehtweets-coldfusion-twitter-cfc/comment-page-1/#comment-4621</link>
		<dc:creator>Dave Phipps</dc:creator>
		<pubDate>Wed, 07 Jul 2010 20:24:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.mattgifford.co.uk/?p=838#comment-4621</guid>
		<description>Matt,

Been using monkehTweets on a couple of sites and it works perfectly, however I am just trying to implement them on a new site and when I run the initial monkehTweet.init(u,p) I get an error along the lines of:

value returned from init is not of type com.coldfumonkeh.monkehTweet

I have set it up the same as in the past, with a com folder in the webroot and then the coldfumonkeh folder in the com folder.

The only difference I can see is that I am using a mapping for other components in the app. Could this be interfering with the return? Is Coldfusion expecting a returntype of &#039;mymapping.com.coldfumonkeh.monkehTweet&#039;?

What happens if you add a this.mappings call in your application.cfc? Does it break monkehTweets for you?

Cheers,

Dave</description>
		<content:encoded><![CDATA[<p>Matt,</p>
<p>Been using monkehTweets on a couple of sites and it works perfectly, however I am just trying to implement them on a new site and when I run the initial monkehTweet.init(u,p) I get an error along the lines of:</p>
<p>value returned from init is not of type com.coldfumonkeh.monkehTweet</p>
<p>I have set it up the same as in the past, with a com folder in the webroot and then the coldfumonkeh folder in the com folder.</p>
<p>The only difference I can see is that I am using a mapping for other components in the app. Could this be interfering with the return? Is Coldfusion expecting a returntype of &#8216;mymapping.com.coldfumonkeh.monkehTweet&#8217;?</p>
<p>What happens if you add a this.mappings call in your application.cfc? Does it break monkehTweets for you?</p>
<p>Cheers,</p>
<p>Dave</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt</title>
		<link>http://www.mattgifford.co.uk/monkehtweets-coldfusion-twitter-cfc/comment-page-1/#comment-3893</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Wed, 16 Jun 2010 17:02:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.mattgifford.co.uk/?p=838#comment-3893</guid>
		<description>@eyemkent - 

I know what you mean. Productivity suddenly increases tenfold without it! :)

I&#039;m able to get the getSavedSearches() and getSearchByID() methods working. Can you let me know what methods you&#039;re having trouble with? Send me the details and we&#039;ll get it resolved.</description>
		<content:encoded><![CDATA[<p>@eyemkent &#8211; </p>
<p>I know what you mean. Productivity suddenly increases tenfold without it! <img src='http://www.mattgifford.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I&#8217;m able to get the getSavedSearches() and getSearchByID() methods working. Can you let me know what methods you&#8217;re having trouble with? Send me the details and we&#8217;ll get it resolved.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: eyemkent</title>
		<link>http://www.mattgifford.co.uk/monkehtweets-coldfusion-twitter-cfc/comment-page-1/#comment-3888</link>
		<dc:creator>eyemkent</dc:creator>
		<pubDate>Wed, 16 Jun 2010 16:08:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.mattgifford.co.uk/?p=838#comment-3888</guid>
		<description>Matt -

Thanks so much for the quick response. Personally, not having access to Twitter doesn&#039;t sound like a bad thing. :-P

Let me know if you have a chance to check it out.

Best,
Kent</description>
		<content:encoded><![CDATA[<p>Matt -</p>
<p>Thanks so much for the quick response. Personally, not having access to Twitter doesn&#8217;t sound like a bad thing. <img src='http://www.mattgifford.co.uk/wp-includes/images/smilies/icon_razz.gif' alt=':-P' class='wp-smiley' /> </p>
<p>Let me know if you have a chance to check it out.</p>
<p>Best,<br />
Kent</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt</title>
		<link>http://www.mattgifford.co.uk/monkehtweets-coldfusion-twitter-cfc/comment-page-1/#comment-3879</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Wed, 16 Jun 2010 11:19:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.mattgifford.co.uk/?p=838#comment-3879</guid>
		<description>@eyemkent - thanks for your comment.
I&#039;m currently working on site that has twitter blocked, but I will look into it as soon as I have access again :)</description>
		<content:encoded><![CDATA[<p>@eyemkent &#8211; thanks for your comment.<br />
I&#8217;m currently working on site that has twitter blocked, but I will look into it as soon as I have access again <img src='http://www.mattgifford.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: eyemkent</title>
		<link>http://www.mattgifford.co.uk/monkehtweets-coldfusion-twitter-cfc/comment-page-1/#comment-3855</link>
		<dc:creator>eyemkent</dc:creator>
		<pubDate>Tue, 15 Jun 2010 21:54:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.mattgifford.co.uk/?p=838#comment-3855</guid>
		<description>Very helpful stuff here, and I&#039;m extremely grateful for your work. I have been successfully using several functions in monkehTweets, but I can&#039;t get getSearchByID or any of the search calls to work, except for the one that pulls the ids themselves. The returned output is consistently the html content of Twitter&#039;s login page.

Didn&#039;t know if this was a known issue or, god forbid, I am doing something wrong.

If you get a chance to respond, it would be much appreciated.

Best,
Kent</description>
		<content:encoded><![CDATA[<p>Very helpful stuff here, and I&#8217;m extremely grateful for your work. I have been successfully using several functions in monkehTweets, but I can&#8217;t get getSearchByID or any of the search calls to work, except for the one that pulls the ids themselves. The returned output is consistently the html content of Twitter&#8217;s login page.</p>
<p>Didn&#8217;t know if this was a known issue or, god forbid, I am doing something wrong.</p>
<p>If you get a chance to respond, it would be much appreciated.</p>
<p>Best,<br />
Kent</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Roberta Varno</title>
		<link>http://www.mattgifford.co.uk/monkehtweets-coldfusion-twitter-cfc/comment-page-1/#comment-2758</link>
		<dc:creator>Roberta Varno</dc:creator>
		<pubDate>Fri, 07 May 2010 23:52:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.mattgifford.co.uk/?p=838#comment-2758</guid>
		<description>Thanks for writing this, I was searching everywhere for something similar, but this has proven to be just as helpful.</description>
		<content:encoded><![CDATA[<p>Thanks for writing this, I was searching everywhere for something similar, but this has proven to be just as helpful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: TwitPic API ColdFusion Wrapper &#124; Matt Gifford AKA ColdFuMonkeh</title>
		<link>http://www.mattgifford.co.uk/monkehtweets-coldfusion-twitter-cfc/comment-page-1/#comment-1769</link>
		<dc:creator>TwitPic API ColdFusion Wrapper &#124; Matt Gifford AKA ColdFuMonkeh</dc:creator>
		<pubDate>Mon, 08 Mar 2010 16:08:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.mattgifford.co.uk/?p=838#comment-1769</guid>
		<description>[...] developed the monkehTweets Twitter ColdFusion Wrapper, I wanted to carry on working with the Twitter &#8216;market&#8217; and [...]</description>
		<content:encoded><![CDATA[<p>[...] developed the monkehTweets Twitter ColdFusion Wrapper, I wanted to carry on working with the Twitter &#8216;market&#8217; and [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
