File tree 1 file changed +3
-2
lines changed
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ val r = requests.put("http://httpbin.org/put", data = Map("key" -> "value"))
94
94
Apart from POSTing key-value pairs, you can also POST ` String ` s, ` Array[Byte] ` s,
95
95
` java.io.File ` s, ` java.nio.file.Path ` s, and ` requests.MultiPart ` uploads:
96
96
97
- ```
97
+ ``` scala
98
98
requests.post(" https://httpbin.org/post" , data = " Hello World" )
99
99
requests.post(" https://httpbin.org/post" , data = Array [Byte ](1 , 2 , 3 ))
100
100
requests.post(" https://httpbin.org/post" , data = new java.io.File (" thing.json" ))
@@ -583,7 +583,8 @@ val response = request.send()
583
583
// response.unsafeBody: by default read into a String
584
584
println(response.unsafeBody)
585
585
```
586
- ```dispatch
586
+ ```scala
587
+ // Dispatch
587
588
import dispatch._, Defaults._
588
589
val svc = url("http://api.hostip.info/country.php")
589
590
val country = Http.default(svc OK as.String)
You can’t perform that action at this time.
0 commit comments