パラメータを querystring
で文字列化するのと、 headers
に 'Content-Type': 'application/x-www-form-urlencoded'
を設定するのがミソだった。
const querystring = require('querystring')
axios.post(url, querystring.stringify({
hoge: 'a',
fuga: 2
}), {
headers: {
'Content-Type': 'application/x-www-form-urlencoded'
}
}).then(() => {
: