Node.jsのrequest-promiseモジュールでresponseの内容が表示できずはまった件
やりたかったこと
Node-REDでリビングのGoogle homeにメッセージを喋らせるREST APIを作り、Node.jsでそのREST APIを呼び出すプログラムを作りたかった。REST APIの呼び出しにはrequest-promiseモジュールを利用。
はまったところ
REST APIを以下のコードで呼び出したが、responseの内容を表示しようとしてもコンソールにundefined
と表示されてしまう。
var options = {
url: 'http://XXX.XXX.XXX.XXX:1880/sendtogh',
method: 'POST',
form: {"message": message}, //前段の処理でmessageにgoogle homeに喋らせたい内容をセット
}
request(options)
.then(function(response){
console.log(response.statusCode); //コンソールに「undefined」と表示される
})
.catch(function(err){
(省略)
解決方法
request-promiseのドキュメントを見ると、optionsにresolveWithFullResponse: true
を指定しないと、bodyの内容しか返却されないとのこと。
https://github.com/request/request-promise#get-the-full-response-instead-of-just-the-body
Author And Source
この問題について(Node.jsのrequest-promiseモジュールでresponseの内容が表示できずはまった件), 我々は、より多くの情報をここで見つけました https://qiita.com/father_further/items/74ec7808db1180b2c33a著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .