发送Content-Type:application / json post和node.js

问题描述:

我们如何在NodeJS中发出类似这样的HTTP请求?示例或模块感谢。

How can we make a HTTP request like this in NodeJS? Example or module appreciated.

curl https://www.googleapis.com/urlshortener/v1/url \
  -H 'Content-Type: application/json' \
  -d '{"longUrl": "http://www.google.com/"}'


Mikeal的请求 模块可以轻松完成此操作:

Mikeal's request module can do this easily:

var request = require('request');

var options = {
  uri: 'https://www.googleapis.com/urlshortener/v1/url',
  method: 'POST',
  json: {
    "longUrl": "http://www.google.com/"
  }
};

request(options, function (error, response, body) {
  if (!error && response.statusCode == 200) {
    console.log(body.id) // Print the shortened url.
  }
});