when I try to curl the following (obviously replaced the username, pw, and dialog id)
curl -u "username":"password" -X POST --form input="hi watson" "https://gateway.watsonplatform.net/dialog/api/v1/dialogs/dialog-id/conversation"
I get
{"conversation_id":xxxxxx,"client_id":xxxxxx,"input": "","confidence":-1.0,"response":["Hi, I'm Watson! I can help you order a pizza, what size would you like?"]}
When I try to send another request with the appropriate client ID, conversation ID and new input it returns the same response with an empty input. When I run my xml in watson's dialog tool provided through github I get another answer.
From my understanding the input should show what I sent over. Any ideas why this is not getting processed?