<?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: updating profile box using &lt;fb:ref /&gt;</title>
	<atom:link href="http://fbcookbook.ofhas.in/2009/02/04/updating-profile-box-using-fbref/feed/" rel="self" type="application/rss+xml" />
	<link>http://fbcookbook.ofhas.in/2009/02/04/updating-profile-box-using-fbref/</link>
	<description>thousands of app development recipes</description>
	<lastBuildDate>Wed, 28 Jul 2010 01:50:28 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: frank</title>
		<link>http://fbcookbook.ofhas.in/2009/02/04/updating-profile-box-using-fbref/comment-page-1/#comment-242</link>
		<dc:creator>frank</dc:creator>
		<pubDate>Fri, 02 Oct 2009 03:42:11 +0000</pubDate>
		<guid isPermaLink="false">http://fbcookbook.ofhas.in/?p=95#comment-242</guid>
		<description>Hello hasin,
i started trying to build facebook apps reading your book but though book is good...many codes and ideas shown in the book is deprecated now...esp feeds and all...
it doesnt discuss many thing about extended permission and all(matter after platform changes)..

so i hope and suggest that new edition of book will be published soon with revised codes and all...
i wrote to packt pub as well but there was no response...
any way great book..
thanks for it</description>
		<content:encoded><![CDATA[<p>Hello hasin,<br />
i started trying to build facebook apps reading your book but though book is good&#8230;many codes and ideas shown in the book is deprecated now&#8230;esp feeds and all&#8230;<br />
it doesnt discuss many thing about extended permission and all(matter after platform changes)..</p>
<p>so i hope and suggest that new edition of book will be published soon with revised codes and all&#8230;<br />
i wrote to packt pub as well but there was no response&#8230;<br />
any way great book..<br />
thanks for it</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: oztimuk</title>
		<link>http://fbcookbook.ofhas.in/2009/02/04/updating-profile-box-using-fbref/comment-page-1/#comment-144</link>
		<dc:creator>oztimuk</dc:creator>
		<pubDate>Thu, 30 Apr 2009 20:03:02 +0000</pubDate>
		<guid isPermaLink="false">http://fbcookbook.ofhas.in/?p=95#comment-144</guid>
		<description>Genius... Thank god for both you and the interweb :) You just saved me a heap of time! 
Thanks</description>
		<content:encoded><![CDATA[<p>Genius&#8230; Thank god for both you and the interweb <img src='http://fbcookbook.ofhas.in/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  You just saved me a heap of time!<br />
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Edwin</title>
		<link>http://fbcookbook.ofhas.in/2009/02/04/updating-profile-box-using-fbref/comment-page-1/#comment-122</link>
		<dc:creator>Edwin</dc:creator>
		<pubDate>Wed, 18 Mar 2009 20:49:32 +0000</pubDate>
		<guid isPermaLink="false">http://fbcookbook.ofhas.in/?p=95#comment-122</guid>
		<description>Hey,
when I try your example code it just shows up as &quot;Greetings! Facebookuser&quot;

The username is not displayed.

Is this a security issue?</description>
		<content:encoded><![CDATA[<p>Hey,<br />
when I try your example code it just shows up as &#8220;Greetings! Facebookuser&#8221;</p>
<p>The username is not displayed.</p>
<p>Is this a security issue?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rc29</title>
		<link>http://fbcookbook.ofhas.in/2009/02/04/updating-profile-box-using-fbref/comment-page-1/#comment-53</link>
		<dc:creator>rc29</dc:creator>
		<pubDate>Wed, 11 Feb 2009 14:32:59 +0000</pubDate>
		<guid isPermaLink="false">http://fbcookbook.ofhas.in/?p=95#comment-53</guid>
		<description>Oooops ! Seems that i can&#039;t put all the code, ... new try:

require_once &#039;lib-facebook/facebook.php&#039;; 
require_once &#039;appconf.php&#039;; 
require_once &#039;appinclude.php&#039;; 

$GLOBALS[&#039;facebook_config&#039;][&#039;debug&#039;] = false;

$appsession = &#039;xxxxxxxxxx&#039;;
$facebook = new Facebook($appapikey, $appsecret, $appsession);

mysql_connect($host, $dbuser, $dbpassword);
mysql_select_db($database) or die( &quot;Unable to select database&quot;);

$users = user_list (); // array id users

foreach ($users as $user) 
{
	$facebook-&gt;set_user($user, $appsession);
	// script that does the jov via the API
}

mysql_close();</description>
		<content:encoded><![CDATA[<p>Oooops ! Seems that i can&#8217;t put all the code, &#8230; new try:</p>
<p>require_once &#8216;lib-facebook/facebook.php&#8217;;<br />
require_once &#8216;appconf.php&#8217;;<br />
require_once &#8216;appinclude.php&#8217;; </p>
<p>$GLOBALS['facebook_config']['debug'] = false;</p>
<p>$appsession = &#8216;xxxxxxxxxx&#8217;;<br />
$facebook = new Facebook($appapikey, $appsecret, $appsession);</p>
<p>mysql_connect($host, $dbuser, $dbpassword);<br />
mysql_select_db($database) or die( &#8220;Unable to select database&#8221;);</p>
<p>$users = user_list (); // array id users</p>
<p>foreach ($users as $user)<br />
{<br />
	$facebook-&gt;set_user($user, $appsession);<br />
	// script that does the jov via the API<br />
}</p>
<p>mysql_close();</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rc29</title>
		<link>http://fbcookbook.ofhas.in/2009/02/04/updating-profile-box-using-fbref/comment-page-1/#comment-52</link>
		<dc:creator>rc29</dc:creator>
		<pubDate>Wed, 11 Feb 2009 14:32:00 +0000</pubDate>
		<guid isPermaLink="false">http://fbcookbook.ofhas.in/?p=95#comment-52</guid>
		<description>Hi Hasin,

i have a question... i have an auto update file that is called by a cron, and this file should modify either the profile or the status. But it seems that i have a problem. In fact it works when i called the file manually with the url, but not with the cron. I supposed it&#039;s related to the FB session.

here is the code:

set_user($user, $appsession);
	// script that does the jov via the API
}

mysql_close();

?&gt;

Do you have an idea ? it would great if you had time to give me your point of view !

Thanks a lot ! Bye</description>
		<content:encoded><![CDATA[<p>Hi Hasin,</p>
<p>i have a question&#8230; i have an auto update file that is called by a cron, and this file should modify either the profile or the status. But it seems that i have a problem. In fact it works when i called the file manually with the url, but not with the cron. I supposed it&#8217;s related to the FB session.</p>
<p>here is the code:</p>
<p>set_user($user, $appsession);<br />
	// script that does the jov via the API<br />
}</p>
<p>mysql_close();</p>
<p>?&gt;</p>
<p>Do you have an idea ? it would great if you had time to give me your point of view !</p>
<p>Thanks a lot ! Bye</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hasin Hayder</title>
		<link>http://fbcookbook.ofhas.in/2009/02/04/updating-profile-box-using-fbref/comment-page-1/#comment-33</link>
		<dc:creator>Hasin Hayder</dc:creator>
		<pubDate>Thu, 05 Feb 2009 12:55:06 +0000</pubDate>
		<guid isPermaLink="false">http://fbcookbook.ofhas.in/?p=95#comment-33</guid>
		<description>we will write an article on Extended Permissions in near future.</description>
		<content:encoded><![CDATA[<p>we will write an article on Extended Permissions in near future.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ranacse05</title>
		<link>http://fbcookbook.ofhas.in/2009/02/04/updating-profile-box-using-fbref/comment-page-1/#comment-32</link>
		<dc:creator>ranacse05</dc:creator>
		<pubDate>Thu, 05 Feb 2009 12:28:20 +0000</pubDate>
		<guid isPermaLink="false">http://fbcookbook.ofhas.in/?p=95#comment-32</guid>
		<description>I think u forgot to tell about this http://wiki.developers.facebook.com/index.php/Extended_permissions</description>
		<content:encoded><![CDATA[<p>I think u forgot to tell about this <a href="http://wiki.developers.facebook.com/index.php/Extended_permissions" rel="nofollow">http://wiki.developers.facebook.com/index.php/Extended_permissions</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ranacse05</title>
		<link>http://fbcookbook.ofhas.in/2009/02/04/updating-profile-box-using-fbref/comment-page-1/#comment-31</link>
		<dc:creator>ranacse05</dc:creator>
		<pubDate>Thu, 05 Feb 2009 09:04:26 +0000</pubDate>
		<guid isPermaLink="false">http://fbcookbook.ofhas.in/?p=95#comment-31</guid>
		<description>Just print any url type ref handler in his profile box using profile_setFBML() api. later, on the time of updating all you have to do is call fbml_refreshRefUrl() so that facebook re cache the content of this url.


one example please .</description>
		<content:encoded><![CDATA[<p>Just print any url type ref handler in his profile box using profile_setFBML() api. later, on the time of updating all you have to do is call fbml_refreshRefUrl() so that facebook re cache the content of this url.</p>
<p>one example please .</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bijon</title>
		<link>http://fbcookbook.ofhas.in/2009/02/04/updating-profile-box-using-fbref/comment-page-1/#comment-29</link>
		<dc:creator>bijon</dc:creator>
		<pubDate>Wed, 04 Feb 2009 17:32:22 +0000</pubDate>
		<guid isPermaLink="false">http://fbcookbook.ofhas.in/?p=95#comment-29</guid>
		<description>very much helpful for learning fb application.Good to see join others open source enthusiast.</description>
		<content:encoded><![CDATA[<p>very much helpful for learning fb application.Good to see join others open source enthusiast.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ranacse05</title>
		<link>http://fbcookbook.ofhas.in/2009/02/04/updating-profile-box-using-fbref/comment-page-1/#comment-28</link>
		<dc:creator>ranacse05</dc:creator>
		<pubDate>Wed, 04 Feb 2009 13:56:45 +0000</pubDate>
		<guid isPermaLink="false">http://fbcookbook.ofhas.in/?p=95#comment-28</guid>
		<description>thanks for publish this topic . I need this very much  .
:D</description>
		<content:encoded><![CDATA[<p>thanks for publish this topic . I need this very much  .<br />
 <img src='http://fbcookbook.ofhas.in/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>
