axiosを使ってPOST送信する際にリクエストヘッダーを設定したいのですが、下記のように記述しても設定されません。
色々サイトを見て回ったのですが解決にいたりませんでした。
何かわかる方はいらっしゃらないでしょうか。
axios({ method: 'post', url: 'https://scraping-for-beginner.herokuapp.com/', dataType: 'json', params: { //timestamp: Date.now() }, data:{ }, headers:{ "accept": "application/json", "accept-encoding": "gzip, deflate, br", "accept-language": "ja,en-US;q=0.9,en;q=0.8", "content-type": "application/x-www-form-urlencoded", "dnt": "1", "sec-fetch-dest": "empty", "sec-fetch-mode": "cors", "sec-fetch-site": "same-origin", "user-agent": "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1", "x-requested-with": "XMLHttpRequest", } }).then( res => { console.log(res); resolve('success'); }).catch( error => { console.log(error); reject(new Error('error')); });
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/05/29 07:21