Closed4
plantuml の API を叩いて図を作る
server を起動
docker run -p 8080:8080 plantuml/plantuml-server:tomcat
http://localhost:8080 にアクセスしてどんな通信しているのか見る
curl -X POST http://localhost:8080/coder \
--data-raw '@startuml
Bob -> Alice : hello
@enduml'
# post の返却値
# => SyfFKj2rKt3CoKnELR1Io4ZDoSa70000
curl http://localhost:8080/png/SyfFKj2rKt3CoKnELR1Io4ZDoSa70000 -o hello.png
として図を取得できる
/coder
は http://www.plantuml.com/plantuml にはないらしい
このスクラップは13日前にクローズされました