How to develop applications for facebook?

I have a choice between ASP.NET (preferably MVC) and Python (Django only).
Which tools are more stable?
I read the comments section on the Facebook Developer Toolkit and it seems like many people are unhappy about this, is there an alternative?
What about Python libraries for facebook, are there any good libraries for developing facebook applications?
Could you guys provide tutorials and tips on developing applications for Facebook?

+3
source share
2 answers

MVC is a perfectly acceptable choice if you go with the Facebook C # SDK . This is a great foundation and is updated very often. You also get all the benefits of development in .NET and Visual Studio.

+1
source

First go with Django. It has a vibrant community and tremendous support.

Secondly, http://github.com/facebook/python-sdk/ works great with Django. One of the main problems with the Facebook API is that it changes quite often, so you need to constantly update it from time to time. Tests are required.

Here is a similar question that should answer your doubts: How to write Facebook applications using Django?

0
source

Source: https://habr.com/ru/post/1769877/


All Articles