Good morning,
I'm going to write a web service, and I'm not sure which structure is best for this situation. I understand that Node and .Net are good.
The client will call the services in the following steps:
Application Download - Log in through the Facebook API.
The user can create an βobjectβ. This object will be stored in the database (SQL for the table. Net / Azure for Node), and also sent to the Facebook application (timeline material). The user can make changes to this at any time.
User can browse Facebook friends (Facebook API again).
Changes to the entity will be redirected to all users who have "joined" the same entity (SignalR.net/Socket.io Node).
This is the skeleton of web services, there may be more calls to Facebook or CRUD. What structure will handle this?
Many thanks.
source
share