<?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: bit.ly wrapper for Objective-C/iPhone</title>
	<atom:link href="http://blog.mugunthkumar.com/coding/bit-ly-wrapper-objective-c-iphone/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.mugunthkumar.com/coding/bit-ly-wrapper-objective-c-iphone/</link>
	<description>iPhone, iPad, Windows Phone Development and Usability Guidelines</description>
	<lastBuildDate>Tue, 07 Feb 2012 00:53:00 +0800</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Bolblizt</title>
		<link>http://blog.mugunthkumar.com/coding/bit-ly-wrapper-objective-c-iphone/comment-page-1/#comment-2792</link>
		<dc:creator>Bolblizt</dc:creator>
		<pubDate>Thu, 21 Apr 2011 06:04:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mugunthkumar.com/?p=402#comment-2792</guid>
		<description>Tested it, its not working for ampersands.</description>
		<content:encoded><![CDATA[<p>Tested it, its not working for ampersands.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: F_tonmoy</title>
		<link>http://blog.mugunthkumar.com/coding/bit-ly-wrapper-objective-c-iphone/comment-page-1/#comment-2788</link>
		<dc:creator>F_tonmoy</dc:creator>
		<pubDate>Mon, 18 Apr 2011 11:41:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mugunthkumar.com/?p=402#comment-2788</guid>
		<description>where is JSON.h file. </description>
		<content:encoded><![CDATA[<p>where is JSON.h file.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pedro</title>
		<link>http://blog.mugunthkumar.com/coding/bit-ly-wrapper-objective-c-iphone/comment-page-1/#comment-2767</link>
		<dc:creator>Pedro</dc:creator>
		<pubDate>Fri, 01 Apr 2011 08:25:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mugunthkumar.com/?p=402#comment-2767</guid>
		<description>Thank you very much to Author for this Helper. Thank you also to Kristoffer Lawson, because I was having few problems with ampersand character. Thank you very much for all!</description>
		<content:encoded><![CDATA[<p>Thank you very much to Author for this Helper. Thank you also to Kristoffer Lawson, because I was having few problems with ampersand character. Thank you very much for all!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Another</title>
		<link>http://blog.mugunthkumar.com/coding/bit-ly-wrapper-objective-c-iphone/comment-page-1/#comment-885</link>
		<dc:creator>Another</dc:creator>
		<pubDate>Thu, 14 Jan 2010 21:05:26 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mugunthkumar.com/?p=402#comment-885</guid>
		<description>&lt;strong&gt;Title...&lt;/strong&gt;

Very interesting post. I would like to link back to it....</description>
		<content:encoded><![CDATA[<p><strong>Title&#8230;</strong></p>
<p>Very interesting post. I would like to link back to it&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Newman</title>
		<link>http://blog.mugunthkumar.com/coding/bit-ly-wrapper-objective-c-iphone/comment-page-1/#comment-418</link>
		<dc:creator>Chris Newman</dc:creator>
		<pubDate>Fri, 06 Nov 2009 21:57:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mugunthkumar.com/?p=402#comment-418</guid>
		<description>I found this very useful and thanks also to Kristoffer for the amendment.  A small correction is required - you need to cast argument 4 of CRURLCreateStringByAddingPercentEscapes to a CFStringRef.  Statement looks like this: 
 
encodedParamCF = CFURLCreateStringByAddingPercentEscapes(kCFAllocatorDefault,  
(CFStringRef) f_longURL, nil, (CFStringRef) @&quot;&amp;+&quot;, kCFStringEncodingUTF8);  
 </description>
		<content:encoded><![CDATA[<p>I found this very useful and thanks also to Kristoffer for the amendment.  A small correction is required &#8211; you need to cast argument 4 of CRURLCreateStringByAddingPercentEscapes to a CFStringRef.  Statement looks like this: </p>
<p>encodedParamCF = CFURLCreateStringByAddingPercentEscapes(kCFAllocatorDefault,<br />
(CFStringRef) f_longURL, nil, (CFStringRef) @&quot;&amp;+&quot;, kCFStringEncodingUTF8);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kristoffer Lawson</title>
		<link>http://blog.mugunthkumar.com/coding/bit-ly-wrapper-objective-c-iphone/comment-page-1/#comment-173</link>
		<dc:creator>Kristoffer Lawson</dc:creator>
		<pubDate>Tue, 29 Sep 2009 10:17:24 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mugunthkumar.com/?p=402#comment-173</guid>
		<description>I altered the source to do the URL encoding in a way that will accept URLs with ampersands and plus signs. This is what the change looks like at the beginning of shortenURL:

    NSString *parameters, *encodedParam;
    CFStringRef encodedParamCF;
    NSString *urlWithoutParams = [NSString stringWithFormat:BITLYAPIURL, @&quot;shorten&quot;, loginName, apiKey];

    encodedParamCF = 
    CFURLCreateStringByAddingPercentEscapes(kCFAllocatorDefault, 
                                            (CFStringRef) f_longURL, 
                                            nil, 
                                            @&quot;&amp;+&quot;, 
                                            kCFStringEncodingUTF8);  
    encodedParam = (NSString *) encodedParamCF;
    [encodedParam autorelease];
    parameters = [NSString stringWithFormat:@&quot;longUrl=%@&quot;, encodedParam];

Without that links to e.g. Google Maps will not work. Hope this helps.</description>
		<content:encoded><![CDATA[<p>I altered the source to do the URL encoding in a way that will accept URLs with ampersands and plus signs. This is what the change looks like at the beginning of shortenURL:</p>
<p>    NSString *parameters, *encodedParam;<br />
    CFStringRef encodedParamCF;<br />
    NSString *urlWithoutParams = [NSString stringWithFormat:BITLYAPIURL, @"shorten", loginName, apiKey];</p>
<p>    encodedParamCF =<br />
    CFURLCreateStringByAddingPercentEscapes(kCFAllocatorDefault,<br />
                                            (CFStringRef) f_longURL,<br />
                                            nil,<br />
                                            @&#8221;&#38;+&#8221;,<br />
                                            kCFStringEncodingUTF8);<br />
    encodedParam = (NSString *) encodedParamCF;<br />
    [encodedParam autorelease];<br />
    parameters = [NSString stringWithFormat:@"longUrl=%@", encodedParam];</p>
<p>Without that links to e.g. Google Maps will not work. Hope this helps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: An objective-C bit.ly wrapper - The iPhone Blog Forums</title>
		<link>http://blog.mugunthkumar.com/coding/bit-ly-wrapper-objective-c-iphone/comment-page-1/#comment-171</link>
		<dc:creator>An objective-C bit.ly wrapper - The iPhone Blog Forums</dc:creator>
		<pubDate>Sun, 27 Sep 2009 12:34:42 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mugunthkumar.com/?p=402#comment-171</guid>
		<description>[...] objective-C bit.ly wrapper     I just posted an open-source bit.ly wrapper here bit.ly wrapper for Objective-C/iPhone &#124; Mugunth Kumar&#039;s Blog  Feel free to use it in your own apps.  Happy Coding... Mugunth    __________________ Developer of [...]</description>
		<content:encoded><![CDATA[<p>[...] objective-C bit.ly wrapper     I just posted an open-source bit.ly wrapper here bit.ly wrapper for Objective-C/iPhone | Mugunth Kumar&#39;s Blog  Feel free to use it in your own apps.  Happy Coding&#8230; Mugunth    __________________ Developer of [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tweets that mention bit.ly wrapper for Objective-C/iPhone &#124; Mugunth Kumar's Blog -- Topsy.com</title>
		<link>http://blog.mugunthkumar.com/coding/bit-ly-wrapper-objective-c-iphone/comment-page-1/#comment-169</link>
		<dc:creator>Tweets that mention bit.ly wrapper for Objective-C/iPhone &#124; Mugunth Kumar's Blog -- Topsy.com</dc:creator>
		<pubDate>Sun, 27 Sep 2009 09:21:22 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mugunthkumar.com/?p=402#comment-169</guid>
		<description>[...] This post was mentioned on Twitter by Mugunth Kumar (). Mugunth Kumar () said: bit.ly wrapper for Objective-C/iPhone http://bit.ly/2yosKV #MKPost [...]</description>
		<content:encoded><![CDATA[<p>[...] This post was mentioned on Twitter by Mugunth Kumar (). Mugunth Kumar () said: bit.ly wrapper for Objective-C/iPhone <a href="http://bit.ly/2yosKV" rel="nofollow">http://bit.ly/2yosKV</a> #MKPost [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Consuming a RESTful Service (bit.ly) in an iPhone Application &#124; Mugunth Kumar&#39;s Blog</title>
		<link>http://blog.mugunthkumar.com/coding/bit-ly-wrapper-objective-c-iphone/comment-page-1/#comment-167</link>
		<dc:creator>Consuming a RESTful Service (bit.ly) in an iPhone Application &#124; Mugunth Kumar&#39;s Blog</dc:creator>
		<pubDate>Sun, 27 Sep 2009 09:04:24 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mugunthkumar.com/?p=402#comment-167</guid>
		<description>[...] source code and documentation on how to use this is explained in post 2.   Share and [...]</description>
		<content:encoded><![CDATA[<p>[...] source code and documentation on how to use this is explained in post 2.   Share and [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced

Served from: blog.mugunthkumar.com @ 2012-02-07 20:59:03 -->
