2015-11-03 57 views
0

我想用下面的「Raw Request」形成url,然後在nodejs中向它發送請求,我該怎麼做。如何使用Node.js中的數據形成url併發送http請求


Raw Request: 
----------- 

POST /sky?api_key="" HTTP/1.1 
Host: https://sky.in 
Content-Type: application/json 
Connection: close 
Content-Length: 82 
{"registration_ids":[""], "data":{"message":"Hello World!"}} 

 

謝謝。

回答

0

可以使用request模塊:

var request = require('request') 
request.post('https://sky.in/sky', { 
    qs: { 
    api_key: '' 
    }, 
    json: { 
    registration_ids: [], 
    data: {message: 'Hello World!'} 
    }, 
}, function (err, res, body) { 
    // body contains the parsed JSON response 
}) 
+0

謝謝你,它的工作。 – scionoftech

+0

太棒了!將這個問題標記爲回答。 – simo

相關問題