Added HTTP METHODS to CurlHTTPRequest
[nit.git] / lib / curl / examples / curl_rest.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Copyright 2018 Matthieu Samuel Le Guellaut <leguellaut.matthieu@gmail.com>
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 # http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16
17
18 # This example will send a Person object to the specified address
19 #
20 import curl
21 import json
22
23 class Person
24 serialize
25
26 var name : String
27 var age : Int
28
29 end
30
31 var url = "http://example.com"
32
33 # POST REQUEST
34 var my_request = new CurlHTTPRequest(url, method="POST")
35 var person = new Person("Jean",12)
36 my_request.body = person.serialize_to_json
37 my_request.execute
38
39 # # USE WITH SOCKET ADDRESS FAMILY
40 # var my_unix_request = new CurlHTTPRequest("http:///tmp/", method="POST")
41 # my_unix_request.body = person.serialize_to_json
42 # my_unix_request.unix_socket_path = "/tmp/test.sock"
43 # my_unix_request.execute