Reputation: 12601
I have a meteor app with a fully functiona UI which I would like to integrate with slack.
The integration would need to go 2 ways:
to post to slack I found this: http://blog.differential.com/setting-up-your-meteor-app-to-post-to-slack/
but I haven't yet found anything for the opposite. Tipycally it's very easy (just setup a POST
route in your app server and receive api calls from slack) but with meteor I couldn't, since it doesn't use a REST Api but rather the ddp protocol (socket based).
Upvotes: 0
Views: 290
Reputation: 3240
There are a few packages that will help add rest endpoints to Meteor apps.
I've used Restivus a few times and recommend it.
Upvotes: 1