Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow 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 question
Can 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).
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow 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 5 years ago.
Improve this question
I have trouble creating a project with asp .net. and terelik
I have to create a system. Account management Everytime i want to know Which libraries help to create account management with .net and support the terelik ui
some thing like manage rule for the any method, just install packages then the packages has initial the table model controller or something.
I guess there are no package which you can just install and get everything already done but there are number of projects in code project site. You can download them and integrate. Beside that you can use Microsoft Identity which provide bootstrap code for user registration/login and you can customize according to your need and role base access can be simply done in mvc just by providing role in controller attribute.
And I am not aware of Telerik providing such functionality. You should implement those using Telerik controls.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow 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 question
Can 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).
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow 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 4 years ago.
Improve this question
Hello StackOV experts!
I've just completed the core pieces of my first MVC3 site. While showcasing it to folks, I received additional requirements (Wiki and document library being the ones of concern here).
One of the other developers suggested using SharePoint components to address the feature needs. We have a SharePoint server. Can we use the SharePoint components and incorporate them in the current site without overhauling the website to SharePoint? If so, can you please provide some examples?
Thanks in advance!!
hmm... those are the key features which make SP solution win over any ASP.Net or MVC application.
Anyway , few options you have is to write custom UI
and use client object model / Rest APIs to post and pull data from SP2010
If you are using MOSS 2007 then you can look into "SPServices" project in Codeplex , which uses JQuery + SP2007 Webservice to give you kind of same behaviour.
There will be lot of limitation also as you will not be able to use Office Integration from MVC application as you can do in SP2010.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow 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 4 years ago.
Improve this question
I am creating a website, and I want to integrate Facebook profile with my application users. That is, all the registered users can view facebook profiles of other registered people in my website. Can I do that? Is there any Facebook API available which I can using with .NET code to achieve this?
One of the best libraries available for Facebook and .NET is the Facebook C# SDK.
http://facebooksdk.codeplex.com/
There are a couple sample projects for integrating your Facebook app with ASP.NET MVC, Silverlight, and WebForms.
The package is available from NuGet as well.
One of the nice features of this library is it's use of dynamic objects. This article explains the advantages of using dynamic over strongly typed methods.
http://ntotten.com/2010/09/dynamic-objects-and-the-facebook-c-sdk/
Using the Json.NET library, serializing the dynamic responses to POCO is very straightforward.
The best place to start this is Face Book Developers
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow 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 7 years ago.
Improve this question
I need a site that does a decent walkthrough on getting one of the OAuth projects for .Net running for my own company's use. Any pointers to documentation and related sample code would be much appreciated. I can already find DevDefined, Magex, and DotNetOpenAuth. I just don't find anyone writing up their own use of these projects.
Hmm... how's this? It's a snippet, but it looks like it's a good sample:
http://blog.stevienova.com/2008/04/19/oauth-getting-started-with-oauth-in-c-net/
I've written a blog post on how to use DevDefined OAuth to connect to Yahoo's Fantasy Football API. This should apply to any of Yahoo's APIs as well as other public projects on OAuth 1.0.
How to Query the Yahoo Fantasy Football API in .NET