How to use the post function from restler

Find comprehensive JavaScript restler.post code examples handpicked from public code repositorys.

restler.post is a method in the Restler library that sends an HTTP POST request.

119
120
121
122
123
124
125
126
127
128
        requestOption.data = body;
        requestOption.headers['content-type'] = 'application/json';
}
  
switch(type.toLowerCase()){                     
        case 'post': restRequest = restler.post(url + '?u=0&xt=' + this.cookies['xt'], requestOption);
          break;
        default : restRequest = restler.get(url, requestOption);
}
  
fork icon6
star icon30
watch icon0

18
19
20
21
22
23
24
25
26
  return opts;
};

module.exports = {
  login:function(uname, passwd){
    return http.post(url('login'), req_options({
      data: { email_or_username: uname, pw: passwd }
    }));
  },
fork icon2
star icon3
watch icon2

+ 3 other calls in file

How does restler.post work?

restler.post is a method in the Restler library that allows you to send HTTP POST requests to a server with the specified data and options, including the headers, URL, query parameters, authentication information, and more. It is a convenient way to make HTTP requests from Node.js applications.

3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
data += "&message=" + msg1 + msg ;

var url = consts.SMS_URL + data;
console.log('url = ' + url);

rest.post(url)
    .on('complete', function(smsResponse, smsError) {
        console.log('SMS response : ' + JSON.stringify(smsResponse));
        //console.log('SMS error : ' + JSON.stringify(smsError));
        //cb(null,smsResponse);
fork icon0
star icon0
watch icon1

Ai Example

1
2
3
4
5
6
7
8
9
10
11
const restler = require("restler");

restler
  .post("http://httpbin.org/post", {
    data: {
      key: "value",
    },
  })
  .on("complete", function (data, response) {
    console.log(data);
  });

In this example, restler.post is used to make a POST request to the URL http://httpbin.org/post. The request includes a data payload with a single key-value pair. When the request completes, the complete event is fired, and the callback function logs the response data to the console.