Bot didn't start on my Wordpress site - smooch

I did a bot on Chatfuel and integrate it with Smooch through the wordpress plugin. Everything is ok in the setting (Token) BUT the Chat didn't start and when I answer nothing happen.
Thanks for your help

You'll need to somehow connect your Chatfuel bot into Smooch since there's currently not per built integration between Chatfuel and Smooch.
Using Chatfuel's JSON API and Smooch API and webhooks it should be possible to integrate the two platform.
Alternatively, you can use one of the other Bot platform integration that is already available on Smooch

Related

Building a bot with Smooch

I'm a first time user on Smooch. Can the Smooch platform itself be used to build a bot? In other words, can I define an intent/flow on Smooch platform itself or does it simply connect to other services?
can I define an intent/flow on Smooch platform itself or does it simply connect to other services?
The latter, but I can add some detail. The Smooch platform itself isn't a bot framework, but it's a great interface to connect your bot to in order to bring your bot to numerous channels. Once your bot integrates with Smooch, it works with all channels that Smooch supports, including native SDKs.
If you're looking for a more ready-made bot framework, but you also want your bot to have the wide channel presence that Smooch offers, here are some bot platforms that have integrated with Smooch:
https://app.smooch.io/integrations/categories/bot-platform
If you want to implement a bot that integrates directly with Smooch APIs, I believe special offerings for that are in the works, and you can reach out from here:
https://smooch.io/bots

Marketo integrate to custom app

I want to integrate marketo with my web app. In such way that the marketo leads or data automatically sync to app at regular interval.
My web application is in php.
I am new to marketo, Please help.
Only way this is done is by connecting to Marketo Via the Marketo REST or SOAP API, documentation to get you started can be found here:
http://developers.marketo.com/getting-started/
There are several integration platforms available today that let you connect various web apps and automate tasks through a simple interface. These cloud integration platforms use API of the web applications in the backend. All you need to do is connect the apps together and configure the settings. You can connect your own app or on-prem system to web services like Marketo, Salesforce, etc.
Here's a short blog post that shows how apps can be integrated.
https://www.built.io/blog/favorite-services-coupled-together
Let me know if this was helpful.
If you are just wanting to sync data back and forth a webhook might do it for you. That is what I currently use to sync data from Marketo to a PHP app and back to Marketo. Lots of addons to Marketo actually work this way.
Webhooks are also a lot easier/quicker to set up on the Marketo end and then on the PHP side you basically just have to handle the POST.
Marketo Webhook Docs: http://developers.marketo.com/webhooks/

Best framework for hybrid app for instant messenger

I wonna start to develop an hybrid app for an application which has a instant messages as core, besides some other realtime feature.
I was having a look to Cordova and ionic. Are these technology the right election?
Is there any module or instant messages project which I can use instead to write a new one?
have a look at
``Firebase from google
They even have a fully working chat application with source code
working demo demo
Con:- Your app is tied to google firebase infrastructure

Azureml Web Service - How to create a Rest Service from an Experiment to be consumed by a mobile app?

I've looked all over the google and stackoverflow for the answer but I cant seem to find it. I'm trying to get the output from an azure experiment to an app. I've made the app using ibuildapp and google forms. How can I use the inputs from the google form, pass it to azure and get an output to display on the app?
In order to access your model from your app you want to create a rest service. See here.
http://azure.microsoft.com/en-us/documentation/articles/machine-learning-publish-a-machine-learning-web-service/
Then you will consume this rest serivce from your app using a standard http client. Sample code is available here.
http://azure.microsoft.com/en-us/documentation/articles/machine-learning-consume-web-services/

Integrating a Web Application with BOX.NET using Content API

I am in the process of conducting a POC for integrating one of our Corporate Applications with BOX.NET.
The Corporate application resides over Amazon Cloud and I would like to use that App to perform CRUD operations on BOX.
Can I go ahead and start using the Content API (REST) provided by BOX.NET? On the BOX side I would have to go and register my application to obtain a API KEY. Please confirm if my understanding is correct.
Thanks
That's correct. To start using the Box.com API you should go to http://developers.box.com and get an API key for your application. Depending on the language you like to code in, there are SDKs you can use, or you can code directly against the REST Content API.
The Box APIs are free to build against. Users that login to your application will have to go through an OAuth2 flow to allow your application to access their Box content.