After reading Rasa’s documentation on triggering an intent, if I understand it correctly, I only need to have conversation_id to act on behalf of this user right? (like after running rasa shell --conversation-id user1, I would send the post request somewhere else with conversation_id = ‘user1’). If so, how would this not be a security problem? If not, what else would I need? I tried sending a request on behalf of user2
but I got this error:
InvalidURL: Invalid URL 'http:/0.0.0.0:5005/conversations/user2/trigger_intent': No host supplied
For some context, I’m trying to write a chatbot that send real-time updates of stock price changes using an external API for a number of registered people. Whenever the API changes its content it will automatically send that info to those users. If I plan to integrate on Whatsapp, what more credentials would be required?