Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

They both have the same name and use the new Graph API, but which is better for ASP.NET 4.0 WebForms? The official SDK hasn't been updated in a few months, but the one on Codeplex was just updated last week. Does anyone have experience with both that could offer an opinion?

https://github.com/facebook/csharp-sdk

http://facebooksdk.codeplex.com/

share|improve this question
1  
I'm curious, why was this was closed after being answered more than 1.5 years ago? – jrummell Jun 21 '12 at 19:05

closed as off topic by casperOne Jun 21 '12 at 18:59

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

2 Answers

up vote 7 down vote accepted

I've worked with facebooksdk. The source code is well engineered and it works great for us.

The facebooksdk also allows you to use the new dynamic type when working with the Graph API which makes it really easy to work.

After logging in with the Javascript SDK, it is really easy to get info about the user.

FacebookApp facebook = new FacebookApp(GetFacebookSettings());
if (facebook.Session != null)
{
    dynamic parameters = new ExpandoObject();
    parameters.fields = "id,first_name,last_name,birthday,email";
    dynamic result = facebook.Api("me", parameters);

    // do something with the user's name...
    string firstName = result.first_name;
}
share|improve this answer
1  
The other thing to note is that the official Facebook C# SDK does not have any support for authorization. If you use that you are on your own when it comes to getting the access token. The Facebook C# SDK on codeplex takes care of this for you. – Nathan Totten Nov 12 '10 at 4:28
This looks great so far, thanks! – jrummell Nov 13 '10 at 4:33
@Nathan Totten: How can you do this?. I am currently working on a Canvas App in webforms and I can't figure out how to use the codeplex Facebook C# SDK to get a token. – Carlos Muñoz Nov 19 '10 at 1:59
@Nathan: Please check my question on stackoverflow.com/questions/4226852/… – Carlos Muñoz Nov 19 '10 at 16:15

I vote for facebooksdk from codeplex. It is regularly updated and bug fixed.

Its also very easy to work with. I recommend codeplex facebook C# sdk

Here is a code repository with well tested code for working with it facebook C# sdk code samples

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.