Vladislav S
Vladislav S

Reputation: 21

Adding api.ai chatbot to my Meteor.js chat application

I have a Meteor.js app similar to this one -> https://www.youtube.com/watch?v=66DH69e-wJ0&t=936s as my first Meteor.js app.

And I have created a API.ai chatbot.

And now I need some guildlines of what should I learn/read to achieve something like this:

I want a function to send user messages to the api and then posts api's answer into the chat.

Upvotes: 0

Views: 523

Answers (1)

mparkitny
mparkitny

Reputation: 1195

It's hard to answer your question if we don't know any details, but I would suggest to read carefully Meteor tutorial. Depending on frontend library you use:

If you would like to use other libraries the best place to start is the GitHub repository with Meteor integration for this library. For example Vue.

Secondly, you should read Meteor guide. You will find here tons of useful tips.

I took a quick look at the video you included and API.ai. I guess that you will need this node package. Also, take a closer look at Methods section in Meteor guide. You will need them to use API.ai package from your client side. When you work with third-party APIs you should also read about HTTP package.

Upvotes: 1

Related Questions