I’m trying to use rasa integrated in my website with jwt token. to do this I have modified the socketio.py file handleMessage with this
message = UserMessage(
data["message"], output_channel, sender_id, input_channel=self.name(), metadata = self.token)
await on_new_message(message)
saving obviusly the var self.roken before. Then I catch the token in my actions with tracker.latest_message[‘metadata’]. I’m facing that if I have more browser pages opened rasa seems to override the token of all pages, in particular the last login overrides the others, how it is possible? How can i solve the problem?