lemonade-command/lemonade

Use HTTP instead of TCP and Go RPC

pocke opened this issue · 10 comments

pocke commented
Use HTTP instead of TCP and Go RPC
mattn commented

Do you mean JSON-RPC via HTTP?

pocke commented

Do you mean JSON-RPC via HTTP?

No, I'd like to remove RPC, and introduce HTTP API such as REST.
I was thinking to use curl instead of lemonade client by this change. https://twitter.com/p_ck_/status/790797713348583424

But I'm not sure it is the best design.

hanxi commented

I want client like this.

#content with urlEncode
curl http://127.0.0.1:2489/copy?content=%e6%88%91%e6%98%af%e7%b2%98%e8%b4%b4%e6%9d%bf&line-ending=CRLF
curl http://127.0.0.1:2489/paste?line-ending=CRLF
#url with urlEncode
curl http://127.0.0.1:2489/open?url=https%3a%2f%2fgithub.com%2flemonade-command%2flemonade
hanxi commented

Only use HTTP GET. also can use nc command to send HTTP GET request.

mattn commented

I prefer use POST for copy.

hanxi commented

I agree use POST. that rest.

hanxi commented
curl -X POST --data "this is raw data" http://127.0.0.1:2489/copy?line-ending=CRLF
hanxi commented

I test server REST API use curl is ok, I'll write a client.

hanxi@cee32d5

At the start, I want to use it for a while. quit last. Becase so simple, I rewrite one in roperate。 And add get host clip image。