Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

A React-Native Bridge for the Google Dialogflow (API.AI) SDK

License

NotificationsYou must be signed in to change notification settings

innFactory/react-native-dialogflow

Repository files navigation

Build StatusVersionDownloads

A React-Native Bridge for the Google Dialogflow AI SDK.

Header Image

Support for iOS 10+ and Android!

Dialogflow is a powerful tool for building delightful and natural conversational experiences. You can build chat and speech bots and may intergrate it in a lot of platform like twitter, facebook, slack, or alexa.

Install

This package depends on react-native-voice, follow their readme to setup it.

Add react-native-dialogflow and link it:

npm install --save react-native-dialogflow react-native-voicereact-native link react-native-dialogflowreact-native link react-native-voice

iOS: IMPORTANT xCode plist settings

Also, you need open the React Native xCode project and add two new keys intoInfo.plistJust right click onInfo.plist ->Open As ->Source Code and paste these strings somewhere into root<dict> tag

<key>NSSpeechRecognitionUsageDescription</key><string>Your usage description here</string><key>NSMicrophoneUsageDescription</key><string>Your usage description here</string>

Application will crash if you don't do this.

Usage

Import Dialogflow:

importDialogflowfrom"react-native-dialogflow";

or for V2

import{Dialogflow_V2}from"react-native-dialogflow"

Configuration

Set theaccessToken and the language in your constructor:

constructor(props){super(props);Dialogflow.setConfiguration("4xxxxxxxe90xxxxxxxxc372",Dialogflow.LANG_GERMAN);}

For V2 you can set theclient_email andprivate_key of the credential jsonauth setup. In addition you have to set your projectId:

constructor(props){super(props);Dialogflow_V2.setConfiguration("your-dialogflow-project@asdf-76866.iam.gserviceaccount.com",'-----BEGIN PRIVATE KEY-----\nMIIEvgIBADAN...1oqO\n-----END PRIVATE KEY-----\n',Dialogflow_V2.LANG_GERMAN,'testv2-3b5ca');}

Listening

Start listening with integrated speech recognition:

<ButtononPress={()=>{Dialogflow.startListening(result=>{console.log(result);},error=>{console.log(error);});}}/>

In iOS only you have to callfinishListening(). Android detects the end of your speech automatically. That's the reason why we didn't implement the finish method in Android.

// only for iOSDialogflow.finishListening();// after this call your callbacks from the startListening will be executed.

Text Request

For using your own speech recognition:

<ButtononPress={()=>{Dialogflow.requestQuery("Some text for your Dialogflow agent",result=>console.log(result),error=>console.log(error));}}/>

Request an Event

For sending anevent to Dialogflow(Contexts and Entities have no effect!):

Dialogflow.requestEvent("WELCOME",{param1:"yo mr. white!"},result=>{console.log(result);},error=>{console.log(error);});

Contexts

Setcontexts (will take affect on next startListening or queryRequest):

constcontexts=[{name:"deals",lifespan:1,parameters:{Shop:"Rewe"}}];Dialogflow.setContexts(contexts);

Reset all (non-permantent) contexts for current session:

Dialogflow.resetContexts(result=>{console.log(result);},error=>{console.log(error);});

Set permanent contexts, which will be set automatically before every request. This is useful for e.g. access tokens in webhooks:

constpermanentContexts=[{name:"Auth",// lifespan 1 is set automatically, but it's overrideableparameters:{AccessToken:"1234yo1234"}}];Dialogflow.setPermanentContexts(permanentContexts);

Entities

SetUserEntities (will take affect on next startListening or queryRequest):

constentities=[{"name":"shop","extend":true,"entries":[{"value":"Media Markt","synonyms":["Media Markt"]}]}];Dialogflow.setEntities(entities);

Listener for Android

Only in Android we have four additional methods:onListeningStarted,onListeningCanceled,onListeningFinished andonAudioLevel. In iOS they will be never called:

<ButtononPress={()=>{Dialogflow.onListeningStarted(()=>{console.log("listening started");});Dialogflow.onListeningCanceled(()=>{console.log("listening canceled");});Dialogflow.onListeningFinished(()=>{console.log("listening finished");});Dialogflow.onAudioLevel(level=>{console.log(level);});Dialogflow.startListening(result=>{console.log(result);},error=>{console.log(error);});}}/>

Note: Make sure you are setting the callbacks before startListening every single time again. Don't set the callbacks in e.g. constructor or componentsDidMount if you are executing startListening more than one times.

Supported Languages

Set the language in your configuration:

Dialogflow.setConfiguration("4xxxxxxxe90xxxxxxxxc372",Dialogflow.LANG_GERMAN);
  • LANG_CHINESE_CHINA
  • LANG_CHINESE_HONGKONG
  • LANG_CHINESE_TAIWAN
  • LANG_DUTCH
  • LANG_ENGLISH
  • LANG_ENGLISH_GB
  • LANG_ENGLISH_US
  • LANG_FRENCH
  • LANG_GERMAN
  • LANG_ITALIAN
  • LANG_JAPANESE
  • LANG_KOREAN
  • LANG_PORTUGUESE
  • LANG_PORTUGUESE_BRAZIL
  • LANG_RUSSIAN
  • LANG_SPANISH
  • LANG_UKRAINIAN

Methods

nameplatformparam1param2param3param4
setConfiguration (V1)bothaccessToken: StringlanguageTag: String
setConfiguration (V2)bothclient_email: Stringprivate_key: StringlanguageTag: StringprojectId: String
startListeningbothresultCallback: (result: object)=>{}errorCallback: (error: object)=>{}
finishListeningios
requestQuerybothquery: StringresultCallback: (result: object)=>{}errorCallback: (error: object)=>{}
requestEventbotheventName: StringeventData: ObjectresultCallback: (result: object)=>{}errorCallback: (error: object)=>{}
onListeningStartedbothcallback: ()=>{}
onListeningCancelednonecallback: ()=>{}
onListeningFinishedbothcallback: ()=>{}
onAudioLevelandroidcallback: (level: number)=>{}
setContextsbotharray
resetContextsbothresultCallback: (result: object)=>{}errorCallback: (error: object)=>{}
setPermanentContextsbotharray
setEntities (V1 only)botharray

Blogpost

Deutsch

Sprachsteuerung mit Api.ai in einer React-Native App

English

Contributors

Powered byinnFactory


[8]ページ先頭

©2009-2025 Movatter.jp