I built a chatbot based on API.ai and I'v integrate it with Heroku and Facebook messenger and it is working well. Now, I would like to to integrate this chatbot to Buildfire.com in order to publish it as IPhone and Android apps.
Can someone help me with this case please?
So you can do this by creating a custom BuildFire plugin. To get more information about how to do this click here
https://github.com/BuildFire/sdk/wiki
Its pretty simple. Using the same Javascript, HTML and CSS that you used for your web application you should be able to migrate that into a BuildFire plugin.
There are many video tutorials on this here
https://www.youtube.com/watch?v=IZcvBZT-zjY&list=PLnq_waykAGlgsERwxHmGNokE6WIeVeH0I
Hope this helps
Related
Hi Friends,
I am learning angular framework. The official Angular website says one platform for mobile and web. But I couldn't see any official docs or tutorials for mobile UI. Which means we can launch angular apps in mobile using a web browser? or is there any official way (without third party jars) to create mobile apps in angular? Could anyone please explain about this.
Thanks
Manivannan
Has anyone built chatbot functionality with Feathersjs?
Currently trying to figure out if the Botkit framework will work (which would be great) or if I'll need to build something from scratch.
Thanks.
I want to integrate my rails app with the free html5 PhotoEditorSDK by Img.ly. This should be quite simple as they have an understandable documentation about using their SDK. Please anybody should feel free to check them out. Here is their link. https://www.photoeditorsdk.com/documentation/html5/getting-started
Just looking for someone to point me in the right direction on how to integrate the SDK with my rails 4 app.
I have a hybrid applicaion developed with Telerik. Unfortunately, I cannot figure out how to add banner ads to the app. I've researched everywhere and I cannot find a solution. Does anyone know of an html5 or javascript banner advertising service/API that would be compatible with a Telerik applicaion?
AdSense will not allow their ads to be in an application, as they want devs to use AdMob, which is only compatible for native applications.
Sorry I have never used Telerik. But I used to integrate ads (inmobi) into my hybrid app using Monaca. I found a step-by-step demo for this integration in the link below:
http://docs.monaca.mobi/en/sampleapp/tips/inmobi/
I hope you can use it as a reference. Cheer.
Update: The above link is removed. So, I added the new link for How to integrate AdMob into Cordova app.
I'm developing a HTML5-based iOS app with PhoneGap. I'm using the latest version of PhoneGap 2.2.0. I want to include a share button, so users can share a message on Facebook and Twitter. I did some research and found my way to ShareKit 2.0. I actually managed to complete the necessary steps described on the wiki. My project is able to build successfully. :)
From here on I'm stuck. I can't find anything how to implement this in my JavaScript (jQuery) project. The old ShareKitPlugin describes a few steps, but it doesn't work. So I guess it changed since 2.0.
Is there another tutorial of some kind I can follow? Or is there another solution to include Facebook and Twitter share buttons? What I like about the ShareKit plugin is that it uses the native FB/Twitter apps installed on your phone (if I am correct assuming this).
Did you follow the steps on the "Adding the Plugin to the Project" section on phonegap plugin page?
If so, after adding the ShareKitPlugin.js import at your html file, like this:
<script src="ShareKitPlugin.js"></script>
you just need to call the share method, like this:
window.plugins.shareKit.share("text that will be shared", "http://google.com");