Using Facebook Graph API with ASP.NET [closed]
We don’t allow 开发者_C百科questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this questionCan you recommend a library/SDK which allows me to quickly integrate Facebook Login (using the latest oAuth 2.0 standards adopted by facebook) with my website? I also want to access information from facebook using the GRAPH API and was wondering which is the best library/SDK for that?
The important thing here is to use the latest API by facebook and I am looking for recommendations to a C# library which makes it easy to do that?
That list on facebook's wiki is very outdated. For an API that supports all the newest facebook technologies (OAuth 2.0, Graph API, etc.) I would recommend http://facebooksdk.codeplex.com
There is a list of .NET libraries for Facebook API access listed in the Facebook Developers Wiki.
I'm most partial to the Facebook Developer Toolkit. It's pretty up to date, and if there is an API that is not directly exposed, it's fairly easy to extend the library to provide the functionality you want without having to rewrite the entire stack (instead, you can just tell it the method name and give it a collection of values, which is what most of the typed methods do).
精彩评论