Get a random quote in JSON format.
Current categories are:
Node.jsで<wbr>Unirestを<wbr>使用<wbr>するには、<wbr>NPMモジュールを<wbr>インストール<wbr>してください。
$ npm install unirest
インストール<wbr>完了後は、<wbr>簡単に<wbr>リクエストを<wbr>行うことが<wbr>できるように<wbr>なります。
var unirest = require('unirest');
unirest.post("https://andruxnet-random-famous-quotes.p.rapidapi.com/?count=undefined&cat=<required>") .header("X-RapidAPI-Key", "undefined") .header("Content-Type", "application/x-www-form-urlencoded") .end(function (result) { console.log(result.status, result.headers, result.body); });