Google Actions Builder and Dialogflow CX? - google-assistant

I would like to use Dialogflow CX to build an agent for the Google Assistant app but I am getting mixed information from articles and documentation on whether this is possible and how easy it is. Does anyone have experience doing this, or have any guidance on if this is possible?

Currently, Google Assistant integration is not supported in the Dialogflow CX. Here are the supported integrations you can use in Dialogflow CX.
However, for any currently unsupported platforms, if they provide developer tools, you can create your own implementation using one of Dialogflow CX’s Client Libraries, Rest API or RPC API.

Related

Can i use Alexa skill Reminder API and Proactive events API without AWS lambda?

I want to integrate Proactive Event API and Reminder API into Alexa skills. I saw some examples using aws lambda. I want to know if i can use it using my own service?
You can yes - it's just an HTTP call so you can do that from wherever works best for your infrastructure/skill. Please refer to the documentation here:
Reminders API
Proactive Events
I would highly recommend using the ASK SDK to develop your skill as it handles authentication for you among other things.
See this tutorial with a live code video on how to integrate the RemindersAPI using the ASK SDK for Node.js.

is there any skype api available to integrate with salesforce [skypedeveloper]

we wanted customize our salesforce application via giving the skype conference link while sending the email from the application itself. the application is completely on visualforce pages and controller so i dont see any appexchange app will help on this.
I have already checked the below links though i could not get any integration apis
https://msdn.microsoft.com/en-us/skype/ucwa/onlinemeetinginvitation_ref
https://ucwa.skype.com/websdk
There are no integration Apis as of now. Only you have to write your own integration logic using Skype for Web SDK. It is a bit complicated SDK and not properly documented or maintained. It has tight coupling with Azure AD and video streaming doesn't work in Chrome/Firefox.
Some integration use cases/examples can be found here
Other relevant information.
https://dev.skype.com/
https://github.com/OfficeDev/skype-docs/tree/master/Skype

Google Assistant API

Is there some google assistant api guide or tutorial? I cannot find anything related by these keywords. There seems have some Android app integration guide, but I want to integrate with my cloud service, not android app.
I find IFTTT have connected Google Assistant to several services, so I want to add some intents to my custom service.
I have built an Alexa app by using Alexa Skill Kit to handle my customize intent, and want to find something similar in Google Assistant developer playground, but I have no clue.
Thanks!
Google Assistant API was officially launched by Google for Windows, Mac, and Linux by which you can Get Google Assistant on Windows, Mac, and Linux.
If you wish to create voice applications for Google Assistant which are called as Google actions you will have to rely on the developers guide posted here
There is also an introductory course on udemy for the same.
I personally have used dialogFlow
and for the backend and I used firebase and have hosted a few apps into the store
Google Assistant will open its SDK to developers this December.
There's been a quite a lot of development on supporting the developer ecosystem, including the release of the Google Assistant SDK, app templates, and the ability to host and edit your integration via Firebase Functions.
For some code samples see
Conversational Components for Google Assistant
DialogFlow (previously Api.ai) v2 Samples

Google Cloud SQL Backend

I've started developing for GAE (Google App Engine) and I want to build a REST API using Google Cloud SQL. I currently have a web app in App Engine that works well with Google Cloud SQL but I need to build an API to provide REST services for Android and iOS or any other technology capable of consume web-services.
I've read many docs in Google about Mobile Backend Starter, Endpoints, etc. I'm not pretty sure how to integrate with my existing Cloud SQL Database. I think I'm almost near to get what I need.
If someone knows a tutorial or documentation to achieve what I need, please share it in here.
Thanks!
I've found what I needed!
If anyone tries to implement Google Cloud Endpoints using Google Cloud SQL, Python with Django, please follow this tutorial You will be able to build a RESTful API with your existing Django Models.
Also, here's a Youtube Video from GDL which explains very well how to use ProtoRPC for Python and build your Google Cloud Enpoints APIs. ProtoRPC is a framework for implementing HTTP-based remote procedure call (RPC) service.

JAX-RS services in Google App Engine

I'm developing a Google App Enigne application that uses some REST services and offers in turn web services. I'm using the GAE Eclipse plugin. I have 2 questions:
What is the best JAX-RS library to use with GAE nowadays? I'd like to use Jersey because I understand is the most "standard" library (isn't it?), but I could use any in principle... I've been looking for documentation, but I've only found some samples in blogs that only work with old versions of Jersey, etc...
For the web services I have to offer, I thought of using JAX-RS as well, but now I'm not sure if it's the best option...
You can use Jersey 1.5. You can see all frameworks that will play on GAE at http://code.google.com/p/googleappengine/wiki/WillItPlayInJava
But GAE has realized on version 1.7.5 as experimental service Endpoints which in term are rest service. Check https://developers.google.com/appengine/docs/java/endpoints/
For web service I don't know if you mean soap service..JAX-RS is the specification for rest service, instead you should use JAX-WS I don't try the compatibility with this specification.
After a little research on this subject, I've found out that the best way to offer web services from Google App Engine is using Google Cloud Endpoints, which is still an experimental technology but as far as I've tried, it works well. Furthermore it is very well integrated with GAE and the Google Plugin for Eclipse.
To cosume REST services from Google App Engine, I've opted for using just Java build-in HTTP client library as explained here. I don't know if it's the best way, but it is very simple and you avoid compatibility problems that could arise between GAE and JAX-RS APIs such as Jersey.
In order to work with JSON in GAE (very useful for RESTful services), I'm using Google's gson, which is a Java library that can be used to convert Java Objects into their JSON representation and vice-versa.

Resources