<?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 boxes with a facebook app</title>
	<atom:link href="http://www.thomasgericke.de/v4/interactive/blog/2009/03/updating-profile-boxes-with-a-facebook-app/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thomasgericke.de/v4/interactive/blog/2009/03/updating-profile-boxes-with-a-facebook-app/</link>
	<description>Facts. Thoughts. Stories. A Blog.</description>
	<lastBuildDate>Wed, 08 Feb 2012 17:29:08 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Thomas</title>
		<link>http://www.thomasgericke.de/v4/interactive/blog/2009/03/updating-profile-boxes-with-a-facebook-app/comment-page-1/#comment-16291</link>
		<dc:creator>Thomas</dc:creator>
		<pubDate>Sun, 24 May 2009 23:03:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.thomasgericke.de/v4/interactive/blog/?p=1601#comment-16291</guid>
		<description>I am so sorry for all of you asking me questions about this topic, because I really don&#039;t have enough time to check out all your code and problems and answer all of you...

I will anser as soon as possible, if still needed.

Thomas</description>
		<content:encoded><![CDATA[<p>I am so sorry for all of you asking me questions about this topic, because I really don&#8217;t have enough time to check out all your code and problems and answer all of you&#8230;</p>
<p>I will anser as soon as possible, if still needed.</p>
<p>Thomas</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jason</title>
		<link>http://www.thomasgericke.de/v4/interactive/blog/2009/03/updating-profile-boxes-with-a-facebook-app/comment-page-1/#comment-16161</link>
		<dc:creator>jason</dc:creator>
		<pubDate>Sun, 24 May 2009 15:06:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.thomasgericke.de/v4/interactive/blog/?p=1601#comment-16161</guid>
		<description>Ack, figured it out!  Different question, though: would you happen to have a tutorial or know of one that would allow this to be added to either a profile or a page?

Thanks for the help.</description>
		<content:encoded><![CDATA[<p>Ack, figured it out!  Different question, though: would you happen to have a tutorial or know of one that would allow this to be added to either a profile or a page?</p>
<p>Thanks for the help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jason</title>
		<link>http://www.thomasgericke.de/v4/interactive/blog/2009/03/updating-profile-boxes-with-a-facebook-app/comment-page-1/#comment-16011</link>
		<dc:creator>jason</dc:creator>
		<pubDate>Sun, 24 May 2009 04:16:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.thomasgericke.de/v4/interactive/blog/?p=1601#comment-16011</guid>
		<description>Great help, thanks.  I just have one hangup.  I can&#039;t get the HTML in fb_box to show up.  I get a profile box but it says &quot;no content to display&quot;.  Is it that $fb_box isn&#039;t referenced anywhere in the file or is fb_box_handle supposed to render that?

Here&#039;s what I&#039;m using:

require_login();
$facebook-&gt;api_client-&gt;profile_setFBML($appapikey, $user_id, &#039;profile&#039;, NULL, &#039;mobile_profile&#039;, &#039;profile_main&#039;);


$fb_box = &quot;&quot;;
$fb_box .= &quot;Hello World!&quot;;
$fb_box .= &quot;&quot;;
$fb_box .= &quot;I am &quot;;
$fb_box .= &quot;.&quot;;
$fb_box .= &quot;Nice you&#039;re on my page.&quot;;
$fb_box .= &quot;Some more content in HTML or FBML...&quot;;


$fb_box_handle = &#039;pb_&#039; . $appid . &#039;_&#039; . $user_id;



$facebook-&gt;api_client-&gt;call_method(&#039;facebook.profile.setFBML&#039;,
array(
&#039;api_key&#039; =&gt; $appapikey,
&#039;v&#039; =&gt; &#039;1.0&#039;,
&#039;uid&#039; =&gt; $user_id,
&#039;profile&#039; =&gt; &#039;&#039;,
&#039;profile_main&#039; =&gt; &#039;&#039;,
)
);

echo &quot;&quot;;
?&gt;</description>
		<content:encoded><![CDATA[<p>Great help, thanks.  I just have one hangup.  I can&#8217;t get the HTML in fb_box to show up.  I get a profile box but it says &#8220;no content to display&#8221;.  Is it that $fb_box isn&#8217;t referenced anywhere in the file or is fb_box_handle supposed to render that?</p>
<p>Here&#8217;s what I&#8217;m using:</p>
<p>require_login();<br />
$facebook-&gt;api_client-&gt;profile_setFBML($appapikey, $user_id, &#8216;profile&#8217;, NULL, &#8216;mobile_profile&#8217;, &#8216;profile_main&#8217;);</p>
<p>$fb_box = &#8220;&#8221;;<br />
$fb_box .= &#8220;Hello World!&#8221;;<br />
$fb_box .= &#8220;&#8221;;<br />
$fb_box .= &#8220;I am &#8220;;<br />
$fb_box .= &#8220;.&#8221;;<br />
$fb_box .= &#8220;Nice you&#8217;re on my page.&#8221;;<br />
$fb_box .= &#8220;Some more content in HTML or FBML&#8230;&#8221;;</p>
<p>$fb_box_handle = &#8216;pb_&#8217; . $appid . &#8216;_&#8217; . $user_id;</p>
<p>$facebook-&gt;api_client-&gt;call_method(&#8216;facebook.profile.setFBML&#8217;,<br />
array(<br />
&#8216;api_key&#8217; =&gt; $appapikey,<br />
&#8216;v&#8217; =&gt; &#8217;1.0&#8242;,<br />
&#8216;uid&#8217; =&gt; $user_id,<br />
&#8216;profile&#8217; =&gt; &#8221;,<br />
&#8216;profile_main&#8217; =&gt; &#8221;,<br />
)<br />
);</p>
<p>echo &#8220;&#8221;;<br />
?&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: alex</title>
		<link>http://www.thomasgericke.de/v4/interactive/blog/2009/03/updating-profile-boxes-with-a-facebook-app/comment-page-1/#comment-13811</link>
		<dc:creator>alex</dc:creator>
		<pubDate>Sat, 16 May 2009 11:35:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.thomasgericke.de/v4/interactive/blog/?p=1601#comment-13811</guid>
		<description>I presume it is safe to say that for many people the buttons are not working becaues they have not updated to the latest facebook library
get it here:
http://developers.facebook.com/get_started.php
I was using the one that comes with smiley and it does not work with profile boxes.</description>
		<content:encoded><![CDATA[<p>I presume it is safe to say that for many people the buttons are not working becaues they have not updated to the latest facebook library<br />
get it here:<br />
<a href="http://developers.facebook.com/get_started.php" rel="nofollow">http://developers.facebook.com/get_started.php</a><br />
I was using the one that comes with smiley and it does not work with profile boxes.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Osku</title>
		<link>http://www.thomasgericke.de/v4/interactive/blog/2009/03/updating-profile-boxes-with-a-facebook-app/comment-page-1/#comment-9401</link>
		<dc:creator>Osku</dc:creator>
		<pubDate>Mon, 04 May 2009 08:37:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.thomasgericke.de/v4/interactive/blog/?p=1601#comment-9401</guid>
		<description>I don&#039;t really get it. You claim you send in the content for you&#039;re profile box, but you really don&#039;t. You merely create you&#039;re content into $fb_box, but the code to be displayed on the profile box only contains the &quot;handle&quot;-code. You never really set the handle. Am I right?</description>
		<content:encoded><![CDATA[<p>I don&#8217;t really get it. You claim you send in the content for you&#8217;re profile box, but you really don&#8217;t. You merely create you&#8217;re content into $fb_box, but the code to be displayed on the profile box only contains the &#8220;handle&#8221;-code. You never really set the handle. Am I right?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ankit</title>
		<link>http://www.thomasgericke.de/v4/interactive/blog/2009/03/updating-profile-boxes-with-a-facebook-app/comment-page-1/#comment-3661</link>
		<dc:creator>Ankit</dc:creator>
		<pubDate>Sat, 04 Apr 2009 05:38:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.thomasgericke.de/v4/interactive/blog/?p=1601#comment-3661</guid>
		<description>I want to mention that I&#039;ve used $fbml=fb:ref but it has been replaced with &#039;0&#039; in the post &amp; second thing Im using page id instead of userid...so I think you can definately find the problem from all this...</description>
		<content:encoded><![CDATA[<p>I want to mention that I&#8217;ve used $fbml=fb:ref but it has been replaced with &#8217;0&#8242; in the post &amp; second thing Im using page id instead of userid&#8230;so I think you can definately find the problem from all this&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ankit</title>
		<link>http://www.thomasgericke.de/v4/interactive/blog/2009/03/updating-profile-boxes-with-a-facebook-app/comment-page-1/#comment-3651</link>
		<dc:creator>Ankit</dc:creator>
		<pubDate>Sat, 04 Apr 2009 05:28:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.thomasgericke.de/v4/interactive/blog/?p=1601#comment-3651</guid>
		<description>&lt;?php
require_once &#039;facebook.php&#039;;

$appapikey = &#039;********************************&#039;;
$appsecret = &#039;********************************&#039;;

$facebook = new Facebook($appapikey, $appsecret);


$fb_box = &quot;&quot;;
$fb_box .= &quot;Hello World!&quot;;
$fb_box .= &quot;&quot;;
$fb_box .= &quot;I am &quot;;
$fb_box .= &quot;.&quot;;
$fb_box .= &quot;Nice you&#039;re on my page.&quot;;
$fb_box .= &quot;Some more content in HTML or FBML...&quot;;

$fb_box_handle = &#039;pb_&#039; . ***********(my application id) . &#039;_&#039; . ***********(page id);

$facebook-&gt;api_client-&gt;call_method(&#039;facebook.profile.setFBML&#039;,
array(
&#039;api_key&#039; =&gt; $appapikey,
&#039;v&#039; =&gt; &#039;1.0&#039;,
&#039;uid&#039; =&gt; ***********,
&#039;profile&#039; =&gt; &#039;&#039;,
&#039;profile_main&#039; =&gt; &#039;&#039;,
)
);
$fbml = &quot;&quot;;

$facebook-&gt;api_client-&gt;profile_setFBML($appapikey, ***********(page id again), $fbml, NULL, NULL, &#039;profile_main&#039;);
?&gt;

Since I am a neophyte to this I don&#039;t know which code of above is significant &amp; which one is redundant, so I did copy-paste everything you posted with fb:ref addded.It works with static text but not in case of url.Thanks for the quick reply.</description>
		<content:encoded><![CDATA[<p>&lt;?php<br />
require_once &#8216;facebook.php&#8217;;</p>
<p>$appapikey = &#8216;********************************&#8217;;<br />
$appsecret = &#8216;********************************&#8217;;</p>
<p>$facebook = new Facebook($appapikey, $appsecret);</p>
<p>$fb_box = &#8220;&#8221;;<br />
$fb_box .= &#8220;Hello World!&#8221;;<br />
$fb_box .= &#8220;&#8221;;<br />
$fb_box .= &#8220;I am &#8220;;<br />
$fb_box .= &#8220;.&#8221;;<br />
$fb_box .= &#8220;Nice you&#8217;re on my page.&#8221;;<br />
$fb_box .= &#8220;Some more content in HTML or FBML&#8230;&#8221;;</p>
<p>$fb_box_handle = &#8216;pb_&#8217; . ***********(my application id) . &#8216;_&#8217; . ***********(page id);</p>
<p>$facebook-&gt;api_client-&gt;call_method(&#8216;facebook.profile.setFBML&#8217;,<br />
array(<br />
&#8216;api_key&#8217; =&gt; $appapikey,<br />
&#8216;v&#8217; =&gt; &#8217;1.0&#8242;,<br />
&#8216;uid&#8217; =&gt; ***********,<br />
&#8216;profile&#8217; =&gt; &#8221;,<br />
&#8216;profile_main&#8217; =&gt; &#8221;,<br />
)<br />
);<br />
$fbml = &#8220;&#8221;;</p>
<p>$facebook-&gt;api_client-&gt;profile_setFBML($appapikey, ***********(page id again), $fbml, NULL, NULL, &#8216;profile_main&#8217;);<br />
?&gt;</p>
<p>Since I am a neophyte to this I don&#8217;t know which code of above is significant &amp; which one is redundant, so I did copy-paste everything you posted with fb:ref addded.It works with static text but not in case of url.Thanks for the quick reply.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thomas</title>
		<link>http://www.thomasgericke.de/v4/interactive/blog/2009/03/updating-profile-boxes-with-a-facebook-app/comment-page-1/#comment-3541</link>
		<dc:creator>Thomas</dc:creator>
		<pubDate>Fri, 03 Apr 2009 19:40:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.thomasgericke.de/v4/interactive/blog/?p=1601#comment-3541</guid>
		<description>Ankit,

did you try the code exactely as I posted? Still not working? Please provide your code.

Thomas</description>
		<content:encoded><![CDATA[<p>Ankit,</p>
<p>did you try the code exactely as I posted? Still not working? Please provide your code.</p>
<p>Thomas</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ankit</title>
		<link>http://www.thomasgericke.de/v4/interactive/blog/2009/03/updating-profile-boxes-with-a-facebook-app/comment-page-1/#comment-3491</link>
		<dc:creator>Ankit</dc:creator>
		<pubDate>Fri, 03 Apr 2009 16:24:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.thomasgericke.de/v4/interactive/blog/?p=1601#comment-3491</guid>
		<description>Hi Thomas...Your code worked perfactly but it was just a static text &#039;profile&#039; in profile box. Can you please give some more to let me know how to display the content from some url. I&#039;ve already used fb:ref but it didn&#039;t work. So can you just show some code with which I can compare mine.

Thanks.</description>
		<content:encoded><![CDATA[<p>Hi Thomas&#8230;Your code worked perfactly but it was just a static text &#8216;profile&#8217; in profile box. Can you please give some more to let me know how to display the content from some url. I&#8217;ve already used fb:ref but it didn&#8217;t work. So can you just show some code with which I can compare mine.</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matthew</title>
		<link>http://www.thomasgericke.de/v4/interactive/blog/2009/03/updating-profile-boxes-with-a-facebook-app/comment-page-1/#comment-1971</link>
		<dc:creator>Matthew</dc:creator>
		<pubDate>Tue, 17 Mar 2009 18:04:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.thomasgericke.de/v4/interactive/blog/?p=1601#comment-1971</guid>
		<description>Never mind! I see it clearly on http://wiki.developers.facebook.com/index.php/Profile.setFBML</description>
		<content:encoded><![CDATA[<p>Never mind! I see it clearly on <a href="http://wiki.developers.facebook.com/index.php/Profile.setFBML" rel="nofollow">http://wiki.developers.facebook.com/index.php/Profile.setFBML</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>

