My question may be a little trivial since I am coming from Java background.
I have need the following with Node.js
- User should be able to connect to multiple social sites like Facebook, Google and Twitter at the same time.
- Site/module must be able to send Auth requests to each connected sites (requests may be different, but should be able to send), like posting to the wall, tweeting etc.
- The user (who may be connected to multiple accounts) must be able to have roles and the server-side (Node.js) will only allow actions to be performed by a set of roles.
I am also planning to use MeteorJS, does it have any implications? Do these libraries work well with each other?
I am not sure if my requirements are possible, please suggest. (may be with examples.)