I’m consistently getting an empty intents array from the /message endpoint, even though the app is trained (training_status: "done") and the intent + utterances exist. I reproduced this across two Meta/Wit accounts. A teammate doing the same in the same network gets the correct intent back.
Steps to Reproduce
Create intent triggeraction and add utterances (e.g., “move the cube”).
Wait until app reports training_status: "done".
Call /message with the Client token:
curl -H "Authorization: Bearer <CLIENT_TOKEN>" ^
"https://api.wit.ai/message?v=20241015&q=move%20the%20cube"
Observe response.
Expected Result
{
"text": "move the cube",
"intents": [{"name": "triggeraction", "confidence": 0.8}],
"entities": {},
"traits": {}
}
Actual Result
{
"text": "move the cube",
"intents": [],
"entities": {},
"traits": {}
}