I am developing a Google Home Action using Action SDK in node.js, where user can order food. It works fine for one user, but when I add multiple users in Alpha testing, the conversation is linked for every user.
For eg:
User 1: Ok, google talk to food app
Response: Welcome, what would you like to order?
User 1: I want to order pizza
Response: What toppings you would like?
/*---- meanwhile if user 2 tries to use the app -----*/
User 2: Ok, google talk to food app
Response: What toppings you would like?
When user 2 comes up, instead of starting from beginning it will continue the conversation that was going on for User 1.
This is a very odd problem and I am unsure how to tackle this in node.js.
Specifics: Language: Node.js Deployed the Google Home Action in Alpha testing.