RASA webhook API issue

Error Logs

/home/abhishek/python-venv/ml-venv/lib/python3.7/site-packages/rasa_sdk/utils.py:144: UserWarning: You are using an old version of rasa which might not be compatible with this version of rasa_sdk (1.6.1). To ensure compatibility use the same version for both, modulo the last number, i.e. using version A.B.x the numbers A and B should be identical for both rasa and rasa_sdk. f"You are using an old version of rasa which might " 2020-02-12 01:02:44 WARNING rasa_sdk.executor - Received an action call without an action. 2020-02-12 01:04:09 WARNING rasa_sdk.executor - Received an action call without an action. 2020-02-12 01:04:10 WARNING rasa_sdk.executor - Received an action call without an action.

API Request

import requests

url = “http://localhost:5055/webhook” payload = {“text”: “Hello!”, “sender”: “user”} headers = { ‘Content-Type’: “application/json”, ‘Cache-Control’: “no-cache”, } response = requests.request(“POST”, url, data=payload, headers=headers) print(response.text)

Hi @abhishekborse, looks like you are posting messages to the action server (on 5055), instead of the rasa server (5005).

You should be posting messages to a specific channel on the rasa server, e.g. http://localhost:5005/webhooks/rest/webhook for the rest channel. Does that help?