Quantcast
Channel: Node.jsタグが付けられた新着記事 - Qiita
Viewing all articles
Browse latest Browse all 8695

【JavaScript, Node.js】axiosでGETする際、レスポンスデータが文字化けしていた場合の対応方法

$
0
0

*個人的なメモです。

axiosでGETする際、レスポンスデータが文字化けしていた

Line-MessageApiにて、コンテンツを取得するAPIを叩いた時のお話。

get-content
GET https://api-data.line.me/v2/bot/message/{messageId}/content

レスポンスが文字化けしていた。ほかのAPIたたいた時は問題なかったのに......

そんな時は、axiosの responseType responseEncoding を付け加える。

axios.create
axios.create({responseType:'arraybuffer',responseEncoding:'binary',})

これで文字化けが解消した。


Viewing all articles
Browse latest Browse all 8695

Trending Articles