<?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: FacebookAgent: Easy way to integrate facebook connect in iPhone Apps and write minimum code to publish feed, change status etc!</title>
	<atom:link href="http://amanpages.com/sample-iphone-example-project/facebookagent-easy-way-to-integrate-facebook-connect-in-iphone-apps-and-write-minimum-code-to-publish-feed-change-status/feed/" rel="self" type="application/rss+xml" />
	<link>http://amanpages.com/sample-iphone-example-project/facebookagent-easy-way-to-integrate-facebook-connect-in-iphone-apps-and-write-minimum-code-to-publish-feed-change-status/</link>
	<description>Pages on iPhone application development and opportunities from a developer&#039;s perspective</description>
	<lastBuildDate>Wed, 28 Jul 2010 11:28:10 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Petem</title>
		<link>http://amanpages.com/sample-iphone-example-project/facebookagent-easy-way-to-integrate-facebook-connect-in-iphone-apps-and-write-minimum-code-to-publish-feed-change-status/comment-page-1/#comment-199</link>
		<dc:creator>Petem</dc:creator>
		<pubDate>Wed, 28 Jul 2010 11:28:10 +0000</pubDate>
		<guid isPermaLink="false">http://amanpages.com/?p=59#comment-199</guid>
		<description>Your FacebookAgent is just the thing. Will you be extending it further? For example, I wish to create an album by name and load pics there, also to retrieve pics from an album by name. Also, your own getAlbumList is marked TBD. Is there a future and where are you going with this?</description>
		<content:encoded><![CDATA[<p>Your FacebookAgent is just the thing. Will you be extending it further? For example, I wish to create an album by name and load pics there, also to retrieve pics from an album by name. Also, your own getAlbumList is marked TBD. Is there a future and where are you going with this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jriskin</title>
		<link>http://amanpages.com/sample-iphone-example-project/facebookagent-easy-way-to-integrate-facebook-connect-in-iphone-apps-and-write-minimum-code-to-publish-feed-change-status/comment-page-1/#comment-194</link>
		<dc:creator>jriskin</dc:creator>
		<pubDate>Thu, 15 Jul 2010 01:01:57 +0000</pubDate>
		<guid isPermaLink="false">http://amanpages.com/?p=59#comment-194</guid>
		<description>In the login you don&#039;t set the delegate, which means that if they aren&#039;t connected to the Internet there won&#039;t be an appropriate delegate message to - (void)dialog:(FBDialog*)dialog didFailWithError:(NSError*)error;&lt;br&gt;&lt;br&gt; Simple fix, dialog.delegate = self;&lt;br&gt;&lt;br&gt;e.g.&lt;br&gt;&lt;br&gt;- (void) login{&lt;br&gt;	currentAction = FacebookAgentActionLogin;&lt;br&gt;	&lt;br&gt;	if(shouldResumeSession){ // try to resume first&lt;br&gt;		if(! [_session resume] ){&lt;br&gt;			if(_session.isConnected){&lt;br&gt;				// Alert already logged in?&lt;br&gt;			}else{&lt;br&gt;				FBLoginDialog* dialog = [[[FBLoginDialog alloc] initWithSession:_session] autorelease];&lt;br&gt;				dialog.delegate = self;&lt;br&gt;				[dialog show];&lt;br&gt;			}&lt;br&gt;		}&lt;br&gt;	}else {&lt;br&gt;		if(_session.isConnected){&lt;br&gt;			// Alert already logged in?&lt;br&gt;		}else{&lt;br&gt;			FBLoginDialog* dialog = [[[FBLoginDialog alloc] initWithSession:_session] autorelease];&lt;br&gt;			dialog.delegate = self;&lt;br&gt;			[dialog show];&lt;br&gt;		}&lt;br&gt;	}&lt;br&gt;}</description>
		<content:encoded><![CDATA[<p>In the login you don&#39;t set the delegate, which means that if they aren&#39;t connected to the Internet there won&#39;t be an appropriate delegate message to &#8211; (void)dialog:(FBDialog*)dialog didFailWithError:(NSError*)error;</p>
<p> Simple fix, dialog.delegate = self;</p>
<p>e.g.</p>
<p>- (void) login{<br />	currentAction = FacebookAgentActionLogin;</p>
<p>	if(shouldResumeSession){ // try to resume first<br />		if(! [_session resume] ){<br />			if(_session.isConnected){<br />				// Alert already logged in?<br />			}else{<br />				FBLoginDialog* dialog = [[[FBLoginDialog alloc] initWithSession:_session] autorelease];<br />				dialog.delegate = self;<br />				[dialog show];<br />			}<br />		}<br />	}else {<br />		if(_session.isConnected){<br />			// Alert already logged in?<br />		}else{<br />			FBLoginDialog* dialog = [[[FBLoginDialog alloc] initWithSession:_session] autorelease];<br />			dialog.delegate = self;<br />			[dialog show];<br />		}<br />	}<br />}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Russ Stinehour</title>
		<link>http://amanpages.com/sample-iphone-example-project/facebookagent-easy-way-to-integrate-facebook-connect-in-iphone-apps-and-write-minimum-code-to-publish-feed-change-status/comment-page-1/#comment-178</link>
		<dc:creator>Russ Stinehour</dc:creator>
		<pubDate>Thu, 24 Jun 2010 00:22:34 +0000</pubDate>
		<guid isPermaLink="false">http://amanpages.com/?p=59#comment-178</guid>
		<description>Thank you for this post and sample.  I downloaded and used my app key and secret key.  When I ran the app, the &quot;Connect to Facebook&quot; page displayed a blank page and returned.  I am missing something.  Shouldn&#039;t the login for my app page appear?  Can you help me?</description>
		<content:encoded><![CDATA[<p>Thank you for this post and sample.  I downloaded and used my app key and secret key.  When I ran the app, the &#8220;Connect to Facebook&#8221; page displayed a blank page and returned.  I am missing something.  Shouldn&#39;t the login for my app page appear?  Can you help me?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ✔ Victor Alexander</title>
		<link>http://amanpages.com/sample-iphone-example-project/facebookagent-easy-way-to-integrate-facebook-connect-in-iphone-apps-and-write-minimum-code-to-publish-feed-change-status/comment-page-1/#comment-167</link>
		<dc:creator>✔ Victor Alexander</dc:creator>
		<pubDate>Sat, 05 Jun 2010 03:06:40 +0000</pubDate>
		<guid isPermaLink="false">http://amanpages.com/?p=59#comment-167</guid>
		<description>From my experience it seems like it keeps them logged in for the duration of the app. If they exit and return, it seems like you have to log in again but the email is saved into the username form.</description>
		<content:encoded><![CDATA[<p>From my experience it seems like it keeps them logged in for the duration of the app. If they exit and return, it seems like you have to log in again but the email is saved into the username form.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ✔ Victor Alexander</title>
		<link>http://amanpages.com/sample-iphone-example-project/facebookagent-easy-way-to-integrate-facebook-connect-in-iphone-apps-and-write-minimum-code-to-publish-feed-change-status/comment-page-1/#comment-166</link>
		<dc:creator>✔ Victor Alexander</dc:creator>
		<pubDate>Sat, 05 Jun 2010 03:02:57 +0000</pubDate>
		<guid isPermaLink="false">http://amanpages.com/?p=59#comment-166</guid>
		<description>Hey Jeff,&lt;br&gt;&lt;br&gt;I&#039;m not sure if we&#039;re allowed to import text into the edit box, but we can populate information into the message. For example&lt;br&gt;&lt;br&gt;Say you want to include a user&#039;s text form a textView, then &lt;br&gt;&lt;br&gt;Depending on where you want to put it, (i.e. caption, etc) remove the @&quot;how are you?&quot;  (yes including the @&quot;&quot;) and replace it with&lt;br&gt;&lt;br&gt; [NSString stringWithFormat:@&quot;%@&quot;, textView.text]&lt;br&gt;&lt;br&gt;Hope it helps!&lt;br&gt;&lt;br&gt;-Vicc</description>
		<content:encoded><![CDATA[<p>Hey Jeff,</p>
<p>I&#39;m not sure if we&#39;re allowed to import text into the edit box, but we can populate information into the message. For example</p>
<p>Say you want to include a user&#39;s text form a textView, then </p>
<p>Depending on where you want to put it, (i.e. caption, etc) remove the @&#8221;how are you?&#8221;  (yes including the @&#8221;") and replace it with</p>
<p> [NSString stringWithFormat:@"%@", textView.text]</p>
<p>Hope it helps!</p>
<p>-Vicc</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: VictorAlexander</title>
		<link>http://amanpages.com/sample-iphone-example-project/facebookagent-easy-way-to-integrate-facebook-connect-in-iphone-apps-and-write-minimum-code-to-publish-feed-change-status/comment-page-1/#comment-165</link>
		<dc:creator>VictorAlexander</dc:creator>
		<pubDate>Sat, 05 Jun 2010 01:01:36 +0000</pubDate>
		<guid isPermaLink="false">http://amanpages.com/?p=59#comment-165</guid>
		<description>Hey Aman, for some reason I keep getting the following errors:&lt;br&gt;&lt;br&gt;&lt;br&gt;(WARNINGS)&lt;br&gt;* Incomplete implementation of class &#039;ThirdViewController&#039;&lt;br&gt;&lt;br&gt;* Method definition for &#039;-facebookAgent:dialog:didFailWithError:&#039; not found&lt;br&gt;&lt;br&gt;* Class &#039;ThirdViewController&#039; does not fully implement the &#039;FacebookAgentDelegate&#039; protocol&lt;br&gt;&lt;br&gt;(BUILD ERROR)&lt;br&gt;* Command /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.2 failed with exit code 1&lt;br&gt;&lt;br&gt;Any help? it looks exactly the same as your sample code test.</description>
		<content:encoded><![CDATA[<p>Hey Aman, for some reason I keep getting the following errors:</p>
<p>(WARNINGS)<br />* Incomplete implementation of class &#39;ThirdViewController&#39;</p>
<p>* Method definition for &#39;-facebookAgent:dialog:didFailWithError:&#39; not found</p>
<p>* Class &#39;ThirdViewController&#39; does not fully implement the &#39;FacebookAgentDelegate&#39; protocol</p>
<p>(BUILD ERROR)<br />* Command /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.2 failed with exit code 1</p>
<p>Any help? it looks exactly the same as your sample code test.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mozymac</title>
		<link>http://amanpages.com/sample-iphone-example-project/facebookagent-easy-way-to-integrate-facebook-connect-in-iphone-apps-and-write-minimum-code-to-publish-feed-change-status/comment-page-1/#comment-161</link>
		<dc:creator>mozymac</dc:creator>
		<pubDate>Mon, 24 May 2010 21:40:06 +0000</pubDate>
		<guid isPermaLink="false">http://amanpages.com/?p=59#comment-161</guid>
		<description>hello,&lt;br&gt;&lt;br&gt;How can i make the post be posted in user&#039;s friends page?</description>
		<content:encoded><![CDATA[<p>hello,</p>
<p>How can i make the post be posted in user&#39;s friends page?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rupeshmenon</title>
		<link>http://amanpages.com/sample-iphone-example-project/facebookagent-easy-way-to-integrate-facebook-connect-in-iphone-apps-and-write-minimum-code-to-publish-feed-change-status/comment-page-1/#comment-156</link>
		<dc:creator>rupeshmenon</dc:creator>
		<pubDate>Mon, 17 May 2010 15:16:22 +0000</pubDate>
		<guid isPermaLink="false">http://amanpages.com/?p=59#comment-156</guid>
		<description>Hi&lt;br&gt;First of all thanks for the tutorial. It was really helpful. But I have a problem. What to do if I had to post a static data from my application as feed. ie; I dont want to enter any thing in the text box. Instead  I had to pass the value from my application which should not be editted and it has to be appear in my wall and the home page of my friends. I even dont require the text box.&lt;br&gt;&lt;br&gt;Thanks &amp; Regards&lt;br&gt;Rupesh R Menon&lt;br&gt;India</description>
		<content:encoded><![CDATA[<p>Hi<br />First of all thanks for the tutorial. It was really helpful. But I have a problem. What to do if I had to post a static data from my application as feed. ie; I dont want to enter any thing in the text box. Instead  I had to pass the value from my application which should not be editted and it has to be appear in my wall and the home page of my friends. I even dont require the text box.</p>
<p>Thanks &#038; Regards<br />Rupesh R Menon<br />India</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff</title>
		<link>http://amanpages.com/sample-iphone-example-project/facebookagent-easy-way-to-integrate-facebook-connect-in-iphone-apps-and-write-minimum-code-to-publish-feed-change-status/comment-page-1/#comment-155</link>
		<dc:creator>Jeff</dc:creator>
		<pubDate>Sun, 16 May 2010 21:02:07 +0000</pubDate>
		<guid isPermaLink="false">http://amanpages.com/?p=59#comment-155</guid>
		<description>Is there any way to set the message edit box contents with publishFeedWithName that appears within the &quot;Publish Story&quot; (FBStreamDialog) dialog.&lt;br&gt;&lt;br&gt; I need to populate the edit box with information from my app - not simply have an empty edit box.</description>
		<content:encoded><![CDATA[<p>Is there any way to set the message edit box contents with publishFeedWithName that appears within the &#8220;Publish Story&#8221; (FBStreamDialog) dialog.</p>
<p> I need to populate the edit box with information from my app &#8211; not simply have an empty edit box.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: agoodmiller</title>
		<link>http://amanpages.com/sample-iphone-example-project/facebookagent-easy-way-to-integrate-facebook-connect-in-iphone-apps-and-write-minimum-code-to-publish-feed-change-status/comment-page-1/#comment-114</link>
		<dc:creator>agoodmiller</dc:creator>
		<pubDate>Wed, 21 Apr 2010 08:07:33 +0000</pubDate>
		<guid isPermaLink="false">http://amanpages.com/?p=59#comment-114</guid>
		<description>Hi Aman,&lt;br&gt;Great set code here.  It has saved me a ton of work.  &lt;br&gt;The only problem I am having is with uploading pictures.  I&#039;m getting the &quot;Error(120) Invalid album id&quot; response when trying.&lt;br&gt; I tried replacing the album name string with nil as someone said in the comments, but now it errs out with a &quot;NSInvalidArgumentException&quot; error.  &lt;br&gt;Any idea what could be the issue? This is the final piece of the puzzle to having my program final.&lt;br&gt;Thanks for any help you can give.</description>
		<content:encoded><![CDATA[<p>Hi Aman,<br />Great set code here.  It has saved me a ton of work.  <br />The only problem I am having is with uploading pictures.  I&#39;m getting the &#8220;Error(120) Invalid album id&#8221; response when trying.<br /> I tried replacing the album name string with nil as someone said in the comments, but now it errs out with a &#8220;NSInvalidArgumentException&#8221; error.  <br />Any idea what could be the issue? This is the final piece of the puzzle to having my program final.<br />Thanks for any help you can give.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
