Closed
Description
Describe the bug
- Node.js version: 12.13.0
- Electron version : 7.0.0
- OS & version: linux mint 19.2
When using got in electron, useElectronNet option is not working with electron 7 for POST requests, returns net::ERR_INVALID_ARGUMENT
error.
Actual behavior
HTTP request returns the following error :
GotError [RequestError]: net::ERR_INVALID_ARGUMENT
at ClientRequest.<anonymous> (/home/vincent/lls/lls-desktop/node_modules/got/source/request-as-event-emitter.js:192:19)
at Object.onceWrapper (events.js:291:20)
at ClientRequest.emit (events.js:208:15)
at ClientRequest.origin.emit (/home/vincent/lls/lls-desktop/node_modules/@szmarczak/http-timer/source/index.js:37:11)
at URLRequest../lib/browser/api/net.js.URLRequest._emitRequestEvent (electron/js2c/browser_init.js:2284:24) {
name: 'RequestError',
host: 'jsonplaceholder.typicode.com',
hostname: 'jsonplaceholder.typicode.com',
method: 'POST',
path: '/posts',
socketPath: undefined,
protocol: 'https:',
url: 'https://jsonplaceholder.typicode.com/posts',
gotOptions: {
path: '/posts',
protocol: 'https:',
slashes: true,
auth: null,
host: 'jsonplaceholder.typicode.com',
port: null,
hostname: 'jsonplaceholder.typicode.com',
hash: null,
search: null,
query: null,
pathname: '/posts',
href: 'https://jsonplaceholder.typicode.com/posts',
retry: {
retries: [Function],
methods: [Set],
statusCodes: [Set],
errorCodes: [Set]
},
headers: {
'user-agent': 'got/9.6.0 (https://github.com/sindresorhus/got)',
accept: 'application/json',
'accept-encoding': 'gzip, deflate',
'content-type': 'application/json',
'content-length': 39
},
hooks: {
beforeRequest: [],
beforeRedirect: [],
beforeRetry: [],
afterResponse: [],
beforeError: [],
init: []
},
decompress: true,
throwHttpErrors: true,
followRedirect: true,
stream: false,
form: false,
json: true,
cache: false,
useElectronNet: true,
body: '{"title":"foo","body":"bar","userId":1}',
method: 'POST'
}
}
Expected behavior
Correct HTTP response
Code to reproduce
In electron main or renderer process :
got
.post('https://jsonplaceholder.typicode.com/posts', {
body: {
title: 'foo',
body: 'bar',
userId: 1
},
json: true,
useElectronNet: true
})
.then(console.log)
.catch(console.log)