I have Build an action to google assitant using dialogflow.I was stuck in a situation where user will be provided with weblink in between conversation.Once he clicks on link he will be directed to webpage to upload image.After he uploads an image i want to redirect him to the same session in google action.Is there a way which i can redirect user back to same session of action.
You don't need to return to the same session, and this isn't possible.
You can store data across sessions in the conv.user.storage
object as long as the user is verified (the system can identify them or their voice) and has not disabled data storage. If you're using node.js, it might look something like this:
app.intent('Save Sum', (conv) => {
if (conv.user.verification === 'VERIFIED') {
conv.user.storage.sum = conv.data.sum;
conv.close(`Alright, I'll store that for next time. See you then.`);
} else {
conv.close(`I can't save that right now, but we can add ` +
`new numbers next time!`);
}
});