是否有一种方法可以POST
而不需要body=
到ActiveMQ主题?
例如代替这个:
curl -u test:test -d "body=message" http://server:8161/api/message/testtopic?type=topic
使用此:
curl -u test:test -d "message" http://server:8161/api/message/testtopic?type=topic
答案 0 :(得分:0)
turns out通过指定Content-Type
可以省略body=
curl -u test:test -d "message" -H "Content-Type: text/plain" http://server:8161/api/message/testtopic?type=topic