<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="http://www.codeplex.com/rss.xsl"?><rss version="2.0"><channel><title>Facebook.NET</title><link>http://facebooknet.codeplex.com/Project/ProjectRss.aspx</link><description>Facebook.NET is a framework for creating Facebook applications in .NET in either C&amp;#35; or VB.NET. It is optimized for creating ASP.NET-based Facebook applications, and at the same time, can also be us...</description><item><title>New Post: Is this project still active?</title><link>http://facebooknet.codeplex.com/Thread/View.aspx?ThreadId=74369</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hi there,&lt;/p&gt;
&lt;p&gt;I was wondering if this project was still a good alternative to the Facebook Developer Toolkit and if it was still supported to reflect the ongoing chances of the Facebook API?&lt;/p&gt;
&lt;p&gt;My goal is to use it for a Silvelright 3 application inside Facebook, am I looking at the right place?&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;&lt;/div&gt;</description><author>DavidLevesque</author><pubDate>Fri, 06 Nov 2009 22:56:31 GMT</pubDate><guid isPermaLink="false">New Post: Is this project still active? 20091106105631P</guid></item><item><title>New Post: Getting Comments on Wall Messages</title><link>http://facebooknet.codeplex.com/Thread/View.aspx?ThreadId=72886</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Heya,&lt;/p&gt;
&lt;p&gt;I'm hoping someone can help me get the comments for a wall message.&lt;/p&gt;
&lt;p&gt;On this page -- &lt;a href="http://wiki.developers.facebook.com/index.php/Stream_(FQL)"&gt;http://wiki.developers.facebook.com/index.php/Stream_%28FQL%29&lt;/a&gt;&amp;nbsp; --&lt;/p&gt;
&lt;p&gt;there is the following description of the comments field in the stream table&lt;/p&gt;
&lt;table style="background-color:#dfb;margin:0px;width:100%;border-collapse:collapse;border:#8d0 1px solid" border=0 cellpadding=4&gt;
&lt;tbody&gt;
&lt;tr valign=top&gt;
&lt;td&gt;comments&lt;/td&gt;
&lt;td&gt;&amp;lt;tt&amp;gt;&lt;a title=Array href="/index.php/Array"&gt;array&lt;/a&gt;&amp;lt;/tt&amp;gt;&lt;/td&gt;
&lt;td&gt;A sample array of comments added to a post. This list contains up to two comments to display along with stream content. To get the full list of comments, use &lt;a title=Stream.getComments href="/index.php/Stream.getComments"&gt;stream.getComments&lt;/a&gt; or query the &lt;a title="Comment (FQL)" href="/index.php/Comment_(FQL)"&gt;comment FQL table&lt;/a&gt; using the post_id of this post. The array contains the following fields: 
&lt;ul&gt;
&lt;li&gt;can_remove (bool): Indicates whether users can remove comments. &lt;/li&gt;
&lt;li&gt;can_post (bool): Indicates whether users can post comments. &lt;/li&gt;
&lt;li&gt;count (i32): The total number of comments added to the post. &lt;/li&gt;
&lt;li&gt;comment_list (array): A list of comment-type comments for this post. Comments are formatted as they would be when returned by the &lt;a title="Comment (FQL)" href="/index.php/Comment_(FQL)"&gt;comment (FQL)&lt;/a&gt; table. &lt;/li&gt;
&lt;/ul&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;I am using Facebook.NET to pull back wall messages &amp;amp; the comments for those wall messages.&amp;nbsp; When I've used the comments array, the only 2 comments in there are the comments by the user whose wall&amp;nbsp;my code is pulling messages from.&lt;/p&gt;
&lt;p&gt;So I decided to try querying the comment FQL table directly, but the post_id associated with a message seems to return a null.&amp;nbsp; Since the post_id returned is formatted&amp;nbsp;like&lt;/p&gt;
&lt;p&gt;&amp;lt;source_id&amp;gt;_&amp;lt;?incrementing number?&amp;gt;&lt;/p&gt;
&lt;p&gt;I've tried&amp;nbsp;using the value after the underscore, which returns an object that has a count of 0.&lt;/p&gt;
&lt;p&gt;How do I get all the comments of a wall message?&amp;nbsp; Are&amp;nbsp;permissions of commenting users somehow involved?&lt;/p&gt;
&lt;p&gt;- O8&lt;/p&gt;&lt;/div&gt;</description><author>RealityMasque</author><pubDate>Fri, 23 Oct 2009 11:22:50 GMT</pubDate><guid isPermaLink="false">New Post: Getting Comments on Wall Messages 20091023112250A</guid></item><item><title>New Post: publish feed in friends wall</title><link>http://facebooknet.codeplex.com/Thread/View.aspx?ThreadId=54568</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hello,&lt;br&gt;&lt;br&gt;I got this code to publish to the user's wall but the text on the post is being set as the facebook status too not sure how to turn that off.&lt;br&gt;Also, I've found code everywhere to get the popup to show the feed form so the user can select to publish or skip but my facebook.dll doesn't have any of the method overloads that I've found. &lt;br&gt;How can I get the popup to show?&amp;nbsp; has someone made it work? My code only publish directly without prompting the user. I downloaded the latest version 2.1 from this site.&lt;br&gt;&lt;br&gt;I understand that the has &lt;strong&gt;publishUserAction &lt;/strong&gt;has auto_publish and I want to set it to false so I do get the popup but my method doesn't have that!&lt;br&gt;&lt;br&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; attachment attach = new attachment();&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; attach.caption = &amp;quot;Post text&amp;quot;;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; attach.description = &amp;quot;Post description&amp;quot;;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; attach.href = &amp;quot;Post Name URL&amp;quot;;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; attach.name = &amp;quot;Post Image Name&amp;quot;;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; attachment_media attach_media = new attachment_media();&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; attach_media.type = attachment_media_type.image;&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; attachment_media_image image = new attachment_media_image();&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; image.type = attachment_media_type.image;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; image.href = &amp;quot;Image Click URL&amp;quot;;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; image.src = &amp;quot;Image hosting URL&amp;quot;;&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; List&amp;lt;attachment_media&amp;gt; attach_media_list = new List&amp;lt;attachment_media&amp;gt;();&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; attach_media_list.Add(image);&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; attach.media = attach_media_list;&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; attachment_property attach_prop = new attachment_property();&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; attachment_category attach_cat = new attachment_category();&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; attach_cat.text = &amp;quot;Category Name&amp;quot;;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; attach_cat.href = &amp;quot;Category URL&amp;quot;; &lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; attach_prop.category = attach_cat;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //attach_prop.ratings = &amp;quot;5 stars&amp;quot;; &lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; attach.properties = attach_prop;&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /* action links */&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; List&amp;lt;action_link&amp;gt; actionlink = new List&amp;lt;action_link&amp;gt;();&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; action_link al1 = new action_link(); &lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; al1.href = &amp;quot;Bottom call to action link url&amp;quot;;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; al1.text = &amp;quot;Bottom call to action link text&amp;quot;;&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; actionlink.Add(al1);&amp;nbsp; &lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FacebookService fbService = new FacebookService();&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; fbService.ApplicationKey = Constants.APIKey;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; fbService.Secret = Constants.APIKey;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; fbService.IsDesktopApplication = false;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; fbService.SessionKey = GetFacebookCookie(&amp;quot;session_key&amp;quot;);&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; fbService.uid = long.Parse(GetFacebookCookie(&amp;quot;user&amp;quot;));&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; api.stream.publish(&amp;quot;YOUR POST&amp;quot;, attach, actionlink, &amp;quot;FacebookID#&amp;quot;, fbService.uid.ToString());&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br&gt;&lt;/p&gt;&lt;/div&gt;</description><author>Garcia</author><pubDate>Wed, 21 Oct 2009 18:09:25 GMT</pubDate><guid isPermaLink="false">New Post: publish feed in friends wall 20091021060925P</guid></item><item><title>New Post: app_to_user Notifications</title><link>http://facebooknet.codeplex.com/Thread/View.aspx?ThreadId=72309</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Can anyone explain how the notification allocations work?&amp;nbsp; I went to the statistics page and it gives you &amp;quot;Notification sends per user per day(user_to_user)&amp;quot;.&amp;nbsp; Does anyone know if the same threshold applies for app_to_user?&amp;nbsp; I have been testing my application but I seem to hit a threshold and can no longer send notifications, no exceptions are thrown but no notifications are recieved by any of the test users.&amp;nbsp; Is there anyway to find out if my application has been blocked or anyway to find out why my notifications are no longer getting through?&lt;/p&gt;&lt;/div&gt;</description><author>tdean</author><pubDate>Sat, 17 Oct 2009 18:40:38 GMT</pubDate><guid isPermaLink="false">New Post: app_to_user Notifications 20091017064038P</guid></item><item><title>New Post: Get user friends list</title><link>http://facebooknet.codeplex.com/Thread/View.aspx?ThreadId=67550</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I have an application that I host outside of facebook and this is what I use:&lt;/p&gt;
&lt;p&gt;facebook.Components.FacebookService _fbService = new facebook.Components.FacebookService();&lt;/p&gt;
&lt;p&gt;string KEY = ConfigurationManager.AppSettings[&amp;quot;APIKey&amp;quot;].ToString();&lt;br&gt;string SECRET = ConfigurationManager.AppSettings[&amp;quot;Secret&amp;quot;].ToString();&lt;br&gt;_fbService.ApplicationKey = KEY;&lt;br&gt;_fbService.Secret = SECRET;&lt;br&gt;_fbService.IsDesktopApplication = false;&lt;/p&gt;
&lt;p&gt;string sessionKey = &amp;quot;&amp;quot;;&lt;br&gt;string userId = &amp;quot;&amp;quot;;&lt;/p&gt;
&lt;p&gt;if (Session[&amp;quot;facebook_session_key&amp;quot;] != null)&lt;br&gt;{&lt;br&gt;&amp;nbsp;sessionKey = Session[&amp;quot;facebook_session_key&amp;quot;].ToString();&lt;br&gt;}&lt;/p&gt;
&lt;p&gt;if (Session[&amp;quot;facebook_userId&amp;quot;] != null)&lt;br&gt;{&lt;br&gt;&amp;nbsp;userId = Session[&amp;quot;facebook_userId&amp;quot;].ToString();&lt;br&gt;}&lt;/p&gt;
&lt;p&gt;// When the user uses the facebook login page,&lt;br&gt;// the redirect back here will will have the auth_token in the query params&lt;br&gt;string authToken = Request.QueryString[&amp;quot;auth_token&amp;quot;];&lt;br&gt;if (!String.IsNullOrEmpty(sessionKey))&lt;br&gt;{&lt;br&gt;&amp;nbsp;_fbService.SessionKey = sessionKey;&lt;br&gt;&amp;nbsp;_fbService.uid = long.Parse(userId);&lt;br&gt;}&lt;br&gt;else if (!String.IsNullOrEmpty(authToken))&lt;br&gt;{&lt;br&gt;&amp;nbsp;_fbService.CreateSession(authToken);&lt;br&gt;&amp;nbsp;Session[&amp;quot;facebook_session_key&amp;quot;] = _fbService.SessionKey;&lt;br&gt;&amp;nbsp;Session[&amp;quot;facebook_userId&amp;quot;] = _fbService.uid.ToString();&lt;br&gt;&amp;nbsp;Session[&amp;quot;facebook_session_expires&amp;quot;] = _fbService.SessionExpires;&lt;br&gt;}&lt;br&gt;else&lt;br&gt;{&lt;br&gt;&amp;nbsp;Response.Redirect(@&amp;quot;&lt;a href="http://www.facebook.com/login.php?api_key"&gt;http://www.facebook.com/login.php?api_key&lt;/a&gt;=&amp;quot; +&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;_fbService.ApplicationKey + @&amp;quot;&amp;amp;v=1.0&amp;quot;);&lt;br&gt;}&lt;/p&gt;
&lt;p&gt;if (!IsPostBack)&lt;br&gt;{&lt;br&gt;&amp;nbsp;var friends = _fbService.friends.getUserObjects();&lt;br&gt;&amp;nbsp;foreach (facebook.Schema.user friend in friends)&lt;br&gt;&amp;nbsp;{&lt;br&gt;&amp;nbsp;&amp;nbsp;//do whatever you want here&lt;br&gt;&amp;nbsp;}&lt;br&gt;}&lt;/p&gt;
&lt;p&gt;I'm sure you've visited the wiki as well but just in case you havn't check out &lt;a href="http://wiki.developers.facebook.com/index.php/API"&gt;http://wiki.developers.facebook.com/index.php/API&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;</description><author>tdean</author><pubDate>Wed, 14 Oct 2009 17:45:41 GMT</pubDate><guid isPermaLink="false">New Post: Get user friends list 20091014054541P</guid></item><item><title>New Post: unable to connect to facebook as a user</title><link>http://facebooknet.codeplex.com/Thread/View.aspx?ThreadId=70733</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I have noticed a setting in the application configuration screen in the &amp;quot;Advanced&amp;quot; tab called &amp;quot;Sandbox Mode&amp;quot;&amp;nbsp; It says that if you have this enabled then only developers of your application can see it.&amp;nbsp;&lt;/p&gt;&lt;/div&gt;</description><author>tdean</author><pubDate>Wed, 14 Oct 2009 17:35:27 GMT</pubDate><guid isPermaLink="false">New Post: unable to connect to facebook as a user 20091014053527P</guid></item><item><title>New Post: Notification settings</title><link>http://facebooknet.codeplex.com/Thread/View.aspx?ThreadId=71977</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I have a desktop application that sends notifications to users.&amp;nbsp; I noticed while testing that the application logo appears beside the notification but not the application name.&amp;nbsp; I have gone through the application settings and filled out all details but it still doesn't show.&amp;nbsp; Does anyone know how to get the application name to appear beside the notification?&lt;/p&gt;&lt;/div&gt;</description><author>tdean</author><pubDate>Wed, 14 Oct 2009 17:30:18 GMT</pubDate><guid isPermaLink="false">New Post: Notification settings 20091014053018P</guid></item><item><title>New Post: unable to connect to facebook as a user</title><link>http://facebooknet.codeplex.com/Thread/View.aspx?ThreadId=70733</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Can you post some of your code?&lt;/p&gt;&lt;/div&gt;</description><author>tdean</author><pubDate>Wed, 14 Oct 2009 13:21:30 GMT</pubDate><guid isPermaLink="false">New Post: unable to connect to facebook as a user 20091014012130P</guid></item><item><title>New Post: unable to connect to facebook as a user</title><link>http://facebooknet.codeplex.com/Thread/View.aspx?ThreadId=70733</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;i have made a facebook desktop app .As a developer login screen disappears after login&amp;nbsp; but when as a user who is not a developer login screen does not disappear even after login&amp;nbsp; i dont know what is the problem please help me&lt;/p&gt;&lt;/div&gt;</description><author>rikki233752</author><pubDate>Thu, 01 Oct 2009 16:52:10 GMT</pubDate><guid isPermaLink="false">New Post: unable to connect to facebook as a user 20091001045210P</guid></item><item><title>New Post: HelloWorldFBML doesn't work?  HTTP error code 404</title><link>http://facebooknet.codeplex.com/Thread/View.aspx?ThreadId=21684</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Nevermind. di the same thing you did, I just had to make my page the default on IIS. THANKS for you posting this did help me out.&lt;/p&gt;&lt;/div&gt;</description><author>kingcomtech</author><pubDate>Sun, 27 Sep 2009 20:26:20 GMT</pubDate><guid isPermaLink="false">New Post: HelloWorldFBML doesn't work?  HTTP error code 404 20090927082620P</guid></item><item><title>New Post: HelloWorldFBML doesn't work?  HTTP error code 404</title><link>http://facebooknet.codeplex.com/Thread/View.aspx?ThreadId=21684</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;What is the current setup page look like now.&lt;/p&gt;
&lt;p&gt;The settings names have changed and I am having the same problem.&lt;/p&gt;
&lt;p&gt;I know is the setup, but my CANVAS url has to be the website with the canvas.aspx page showing.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;thanks.&lt;/p&gt;&lt;/div&gt;</description><author>kingcomtech</author><pubDate>Sun, 27 Sep 2009 20:17:52 GMT</pubDate><guid isPermaLink="false">New Post: HelloWorldFBML doesn't work?  HTTP error code 404 20090927081752P</guid></item><item><title>New Post: Facebook "like" link?</title><link>http://facebooknet.codeplex.com/Thread/View.aspx?ThreadId=69763</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I am trying to implement the &amp;quot;like&amp;quot; link in my app, I was wondering which aspect of Facebook.NET hooks into this, and if this has an analog in the official PHP API I can look at as well.&amp;nbsp; We've been struggling with this for about a week now, and I would be very grateful to have some help from the community.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thank you very much ahead of time for any help provided!&lt;/p&gt;&lt;/div&gt;</description><author>Baryn</author><pubDate>Tue, 22 Sep 2009 20:21:36 GMT</pubDate><guid isPermaLink="false">New Post: Facebook "like" link? 20090922082136P</guid></item><item><title>New Post: Notification on status update</title><link>http://facebooknet.codeplex.com/Thread/View.aspx?ThreadId=68131</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I would like to write a Facebook plugin, looking at the installing users status updates. Is there some part of the API, which makes it possible to get notified, each time the installing user, updates his/her status?&lt;/p&gt;
&lt;p&gt;I could just do a desktop application letting the user login and after that poll the user object for status updates. But I would really like to get the updates AS they happen, rather than polling multiple facebook accounts.&lt;/p&gt;&lt;/div&gt;</description><author>ThomasArdal</author><pubDate>Mon, 07 Sep 2009 05:21:28 GMT</pubDate><guid isPermaLink="false">New Post: Notification on status update 20090907052128A</guid></item><item><title>New Post: users.hasAppPermission problems</title><link>http://facebooknet.codeplex.com/Thread/View.aspx?ThreadId=64549</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Try this:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; facebook.Types.Enums.Extended_Permissions.publish_stream&lt;/p&gt;
&lt;p&gt;Instead of:&amp;nbsp;&amp;nbsp; Enums.Extended_Permissions.publish_stream&lt;/p&gt;
&lt;pre id=line1&gt;
&lt;/pre&gt;&lt;/div&gt;</description><author>enkode</author><pubDate>Sun, 06 Sep 2009 20:16:39 GMT</pubDate><guid isPermaLink="false">New Post: users.hasAppPermission problems 20090906081639P</guid></item><item><title>New Post: Profile.SetFBML Problem!</title><link>http://facebooknet.codeplex.com/Thread/View.aspx?ThreadId=67912</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hi,&lt;br&gt;&amp;nbsp;&lt;br&gt;I've written an application with asp.net (c#) . But I couldn't succeed to send a notification to user wall with Profile.SetFBML method.&lt;br&gt;&amp;nbsp;&lt;br&gt;I've googled and find the updated version of the method on &lt;a href="http://wiki.developers.facebook.com/index.php/Profile.setFBML"&gt;http://wiki.developers.facebook.com/index.php/Profile.setFBML&lt;/a&gt; addres. But the version of FacebookNET.dll (v.0.3.0.0) which I've used in my app doesn't have this method with defined parameters on that url.&lt;br&gt;&amp;nbsp;&lt;br&gt;I've used FacebookNET.dll and FacebookNET.Web.dll &lt;br&gt;&amp;nbsp;&lt;br&gt;Below line returns True but it doesn't publish the notification to the wall.&lt;/p&gt;
&lt;p&gt;&amp;nbsp; Profile.SetFbml(service.UserID, profileFbml, &amp;quot;&amp;quot;, &amp;quot;&amp;quot;)&lt;br&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I think below line is the true usage of method. But I don't have the latest source code version&amp;nbsp; of FacebookNET. So I couldn't modify the dll.&lt;/p&gt;
&lt;p&gt;&amp;nbsp; FacebookService service = fbApplication.Service;&lt;br&gt;&amp;nbsp; Profile.SetFBML(&amp;quot;&amp;quot;, service.UserID, profileFbml, &amp;quot;&amp;quot;, &amp;quot;&amp;quot;);&lt;br&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Can you provide the latest version of dll or send some sample code which works with the right notification publish method?&lt;br&gt;&amp;nbsp;&lt;br&gt;Regards,&lt;/p&gt;&lt;/div&gt;</description><author>altin34</author><pubDate>Thu, 03 Sep 2009 20:49:05 GMT</pubDate><guid isPermaLink="false">New Post: Profile.SetFBML Problem! 20090903084905P</guid></item><item><title>New Post: Get user friends list</title><link>http://facebooknet.codeplex.com/Thread/View.aspx?ThreadId=67550</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hi All,&lt;/p&gt;
&lt;p&gt;I'm quite new here, and i tryed to find how can i get a user friends list&lt;/p&gt;
&lt;p&gt;from call within the server side.&lt;/p&gt;
&lt;p&gt;Appreciate&amp;nbsp;&amp;nbsp;the help,&lt;/p&gt;&lt;/div&gt;</description><author>MarioBros</author><pubDate>Tue, 01 Sep 2009 08:16:14 GMT</pubDate><guid isPermaLink="false">New Post: Get user friends list 20090901081614A</guid></item><item><title>Created Issue: localization change by Facebook affecting API calls to restserver.php</title><link>http://facebooknet.codeplex.com/WorkItem/View.aspx?WorkItemId=8625</link><description>With the recent additional of support for localization by the Facebook API per &amp;#91;http&amp;#58;&amp;#47;&amp;#47;wiki.developers.facebook.com&amp;#47;index.php&amp;#47;Push_Changes_-_Aug_25_2009&amp;#93;, there have been several reports that this is failing with this library.  Namely, in several places the library assumes that certain string values will be returned &amp;#40;like &amp;#39;male&amp;#39; and &amp;#39;female&amp;#39;&amp;#41;. To reproduce, create a Facebook application using this framework, and publish it in a non- US English locale through the Translations application at facebook.com&amp;#47;translations.  After this, any user browsing the application in said locale will experience the issues.&lt;br /&gt;&lt;br /&gt;To fix the issue, the library should be patched to avoid dependencies on particular strings in order to convert the values to enumerations, and instead act in a locale-independent manner.&lt;br /&gt;</description><author>mtrainer</author><pubDate>Wed, 26 Aug 2009 02:39:05 GMT</pubDate><guid isPermaLink="false">Created Issue: localization change by Facebook affecting API calls to restserver.php 20090826023905A</guid></item><item><title>New Post: users.hasAppPermission problems</title><link>http://facebooknet.codeplex.com/Thread/View.aspx?ThreadId=64549</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;so is there anyone who has a suggestion for me?&lt;/p&gt;&lt;/div&gt;</description><author>eonasdan</author><pubDate>Fri, 07 Aug 2009 20:08:36 GMT</pubDate><guid isPermaLink="false">New Post: users.hasAppPermission problems 20090807080836P</guid></item><item><title>New Post: users.hasAppPermission problems</title><link>http://facebooknet.codeplex.com/Thread/View.aspx?ThreadId=64549</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I'm having trouble with the users.hasAppPermission (thus the title).&lt;/p&gt;
&lt;p&gt;If I do this:&lt;/p&gt;
&lt;div style="color:Black;background-color:White"&gt;
&lt;pre&gt;&lt;span style="color:Blue"&gt;if&lt;/span&gt; API.users.hasAppPermission(facebook.Types.Enums.Extended_Permissions.publish_stream) = &lt;span style="color:Blue"&gt;true&lt;/span&gt; &lt;span style="color:Blue"&gt;then&lt;/span&gt;
   response.write(&lt;span style="color:#A31515"&gt;&amp;quot;hi&amp;quot;&lt;/span&gt;)
&lt;span style="color:Blue"&gt;end&lt;/span&gt; &lt;span style="color:Blue"&gt;if&lt;/span&gt;
&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;pre id=line1&gt;&lt;span&gt;Then I get this: &lt;strong&gt;facebook.Utility.FacebookException: user id parameter or session key required&lt;br&gt;&lt;br&gt;&lt;/strong&gt;If I do this:&lt;br&gt;&lt;strong&gt;&lt;br&gt;&lt;/strong&gt;&lt;/span&gt;&lt;pre&gt;&lt;span style="color:blue"&gt;if&lt;/span&gt; API.users.hasAppPermission(Enums.Extended_Permissions.publish_stream) = &lt;span style="color:blue"&gt;true&lt;/span&gt; &lt;span style="color:blue"&gt;then&lt;/span&gt;&lt;br&gt;   response.write(&lt;span style="color:#a31515"&gt;&amp;quot;hi&amp;quot;&lt;/span&gt;)&lt;br&gt;&lt;span style="color:blue"&gt;end&lt;/span&gt; &lt;span style="color:blue"&gt;if&lt;/span&gt;&lt;br&gt;&lt;br&gt;&lt;/pre&gt;
&lt;br&gt;
&lt;pre id=line1&gt;&lt;span&gt;Then I get  &lt;strong&gt;Name 'Enums' is not declared.&lt;br&gt;&lt;br&gt;&lt;/strong&gt;What am I doing wrong here? I want to check if the user has granted extended permissions. If the user has not granted extended permissions then ask for permission.&lt;/span&gt;&lt;/pre&gt;
&lt;/pre&gt;&lt;/div&gt;</description><author>Eonasdan</author><pubDate>Wed, 05 Aug 2009 13:29:33 GMT</pubDate><guid isPermaLink="false">New Post: users.hasAppPermission problems 20090805012933P</guid></item><item><title>New Post: Scroll Bars in Iframe</title><link>http://facebooknet.codeplex.com/Thread/View.aspx?ThreadId=19502</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hey Team&lt;br&gt;I Have an issue facing from last few day realted to showing pop up for offline access extended permission Earliar it was opening properly but now it is giving me error of &amp;quot;object expected in offline access&amp;quot; when I click on my FBML tag created in my App in Asp.net c#&lt;br&gt;&amp;lt;fb:prompt-permission perms=&amp;quot;email&amp;quot;&amp;gt; Grant permission for email &amp;lt;/fb:prompt-permission&amp;gt;&lt;br&gt;&lt;br&gt;I m tired enough to looking for it.Please is help me guys.&lt;br&gt;&lt;br&gt;&lt;br&gt;Pawan Bali&lt;/p&gt;&lt;/div&gt;</description><author>pawan</author><pubDate>Thu, 30 Jul 2009 02:23:32 GMT</pubDate><guid isPermaLink="false">New Post: Scroll Bars in Iframe 20090730022332A</guid></item></channel></rss>