facebooktoolkit

Which Facebook .NET Library is the best to use?

There is a list of projects here, mainly the Facebook Developer Toolkit and Facebook.NET. However, I've seen a lot of negative feedback about the toolkit and it seems like Facebook.NET hasn't been upgraded to the latest facebook API. Are either of these worth using? Any other good libraries out there? Specifically I'm looking to use t...

Facebook Connect and ASP.NET

Hello, I'm at step 8 of the authentication overview found here: http://wiki.developers.facebook.com/index.php/How_Connect_Authentication_Works In particular, the user has logged into facebook via Facebook Connect and their web session has been created. How do I use the facebook developer toolkit v2.0 (from clarity) to retrieve informa...

What are the available functions to send notifications to a Facebook user?

Currently I am using Codeplex's Facebook Developer Toolkit version 2 for my ASP.net Facebook application. I would like to be able to send notifications to a user's Inbox or wall of the application and was wondering what are the available functions to do that? If not in the API, then please provide example functions from the main Facebo...

FaceBook publishUserAction FaceBook Developer Toolkit 2.0?

I am so lost on this. I am trying to use the publishUserAction feature and have no idea what the correct way is to publish stories on FB. I get an error that I cannot automatically publish one-liners using Connect. OK, so what do I need to do then? Do I need to use the Feed Forms? Any help on this is greatly appreciated. I have been usin...

How to get facebook page's page_id via facebook connect?

I have a facebook connect site using the c# facebook toolkit. I want to publish some stuff on the user's facebook page's wall. I can do this using the stream.publish in the Open Stream API. But, to do any of this a page_id is required. Yet, I don't see any methods where you can get access to the page_id based on the user_id. So, basic...

How to post on wall of Facebook fan page from external website, of which you are a fan but not an admin

I'm using an ASP.NET Facebook Developers Toolkit (http://www.codeplex.com/FacebookToolkit) on an external website, and I'm also the admin of a facebook fan page for the website. Users on my website (may or may not be facebook users) create content articles. I would like to hook up these articles to the Facebook fan page, so that, when ...

Basic facebook web application session info is missing

I made really basic facebook application, which collect permission from user to post data. Some time ago (around New year) it worked fine. I am using http://facebooktoolkit.codeplex.com, and my code looks like this: public partial class Facebook : CanvasFBMLBasePage { protected void Page_Load(object sender, EventArgs e) { if (this.Api.U...

Facebook API get user local time without FBML

Hello, I'm writing a Facebook Iframe canvas application using the Facebook Toolkit. There is a certain action where I need to store the date and time for the action, and in the future I want to render it for the user as a date and time like (10:05 AM 20 September 2010). The problem here is that each facebook user has his own local date...

How to add two assemblies with the same name into an asp.net mvc project

I'm using the Facebook Toolkit inside my Asp.net MVC Application. But now I like to use the Facebook c# Sdk as well, exspecially to test, which one works better for me. Sadly they both consist of three assemblies that have the same name: Facebook Facebook.Web Facebook.Web.Mvc How can I still include both in my project? ...