JWT authentication implementation for rasa chatbot

Hello everyone, I am trying to implement JWT based authentication on the API developed by rasa framework when we enter the rasa run command in our command line. As per the documentation, JWT can be implemented simply by running rasa server with the following command. rasa run
-m models
–enable-api
–log-file out.log
–jwt-secret thisismysecret I ran my rasa chatbot using this command. However, I am still able to hit requests in the chatbot API without using any authentication. How can I solve this?