scalaj / scalaj-http

Simple scala wrapper for HttpURLConnection. OAuth included.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Doesn't support HTTP Patch method

SlowPokeInTexas opened this issue · comments

This is Needed for REST usage

Http(url).postForm.params(...).method("PATCH").asString should work for you. The order of operations is important here-- method needs to be after postForm

@hoffrocket Would be nice to update docs in library code with this issue/hack. Thanks!