Reputation: 173
I've implemented DialogFlow with the help of [ Create a Conversational Interface for Android With Dialogflow] https://code.tutsplus.com/tutorials/create-a-conversational-interface-for-android-with-dialogflow--cms-30845 and It was working like a charm. Now DialogFlow has migrated its API from V1 to V2, because of that I'm not getting any response from https://api.dialogflow.com/v1/ every time I hit this API I get a response "Not Found".
Upvotes: 1
Views: 5317
Reputation: 2545
We created an Android Dialogflow client lib (Dialogflow v2) which uses the officially supported Dialogflow Java lib.
Upvotes: 0
Reputation: 389
One way is to use the Dialogflow Android libraries and the other is to use the third-party applications which support DialogflowV2 and integrates with Android which also supports customizations and actionable messages. Please refer to this article for more info.
Upvotes: 2
Reputation: 5266
You can use Dialogflow Android SDK. It works for me on V1 and V2. There are code snippets and documentation on how to use it and integrate it in Android.
But this won't give you the chat UI. You will need to develop that on your own Android UI. You can reuse the Dialogflow agent with this SDK.
Update
If you are still looking to integrate Dialogflow into an Android project, take a look into my library. It will help you easily integrate a chatbot with complete UI in your app https://medium.com/@abhi007tyagi/android-dialogflow-chatbot-library-6b7b3822e7bc
Upvotes: 2