I have created a React-Native chatbot. Currently, the flow is:
- User logs into React-Native iOS app via Google sign in using Firebase Auth
- User interacts with chatbot. Messages are sent via iOS app to Dialogflow
- Dialogflow maps intent and selects appropriate response
Most intents (and thus, responses) are mapped to fulfilment using a NodeJS webhook. I would like parse the user's name and ID to Dialogflow, so that Dialogflow can parse it to my webhook. How may I go about doing this? Do I have to use the in line editor in Dialogflow? If yes, how?