我试图一个接一个地向同一个主题机器人写两条不同的消息。但是任何时候发布具有相同标题的新主题。
我使用 rest api post call 并尝试了这个:
curl --insecure -X POST https://yourcircuit.com/rest/v2/webhooks/incoming/xxxx -d '{"text": "foobar1", "subject": "My fancy title"}'
curl --insecure -X POST https://yourcircuit.com/rest/v2/webhooks/incoming/xxxx -d '{"text": "foobar2", "subject": "My fancy title"}'
我假设电路对话中同一标题框下有两条消息。
有谁知道如何做到这一点?