developer82
developer82

Reputation: 13733

Facebook SDK for .NET Core

Up until now I've been using Facebook SDK for .NET by https://hackerapp.com/

I want to upgrade my project to ASP.NET Core, but I see that their library doesn't have support for .NET Core - nor do they mention about upcoming support for .NET Core.

I can write an HTTP wrapper against Facebook API - but that seems like over-complicating my app - when there's a nice library that is made just for that.

Does anyone know about Facebook SDK for .NET Core?

Upvotes: 29

Views: 7847

Answers (2)

developer82
developer82

Reputation: 13733

So after not finding a solution, I've decided to develop my own some time ago. You may find here: https://github.com/developer82/FacebookCore

Upvotes: 8

Jean
Jean

Reputation: 5101

I don't know why you got a -1, but I am facing the same issue. Therefore for now I am going to use the OAUTH provided by .Net then direct requests to the graph API...

The other option I know would be to have a look there: https://github.com/Microsoft/winsdkfb

And there for some more advanced features: https://github.com/Microsoft/UWPCommunityToolkit/tree/dev/Microsoft.Toolkit.Uwp.Services/Services/Facebook

I am thinking about porting a SDK to .Net Core, but that may be too much work!

Upvotes: 4

Related Questions