Stringify request data - fixes https://github.com/liyasthomas/postwoman/issues/124
This commit is contained in:
@@ -412,7 +412,7 @@
|
|||||||
requestBody = this.rawInput ? this.rawParams : this.rawRequestBody;
|
requestBody = this.rawInput ? this.rawParams : this.rawRequestBody;
|
||||||
|
|
||||||
Object.assign(headers, {
|
Object.assign(headers, {
|
||||||
'Content-Length': requestBody.length,
|
//'Content-Length': requestBody.length,
|
||||||
'Content-Type': `${this.contentType}; charset=utf-8`
|
'Content-Type': `${this.contentType}; charset=utf-8`
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@@ -437,7 +437,7 @@
|
|||||||
url: this.url + this.path + this.queryString,
|
url: this.url + this.path + this.queryString,
|
||||||
auth,
|
auth,
|
||||||
headers,
|
headers,
|
||||||
data: requestBody
|
data: requestBody.toString()
|
||||||
});
|
});
|
||||||
|
|
||||||
(() => {
|
(() => {
|
||||||
|
|||||||
Reference in New Issue
Block a user