usebruno / bruno

Opensource IDE For Exploring and Testing Api's (lightweight alternative to postman/insomnia)
https://www.usebruno.com/
MIT License
27.96k stars 1.29k forks source link

Get Request - Converting Content-Type from XML to JSON. #289

Open Cibico99 opened 1 year ago

Cibico99 commented 1 year ago

Get response headers are being changed to JSON from XML, and then response formatting is incorrect. The exact same request is being made in both applications.

"Content-Type=application/xml;charset=UTF-8" changes to "content-type=application/xml;charset=UTF-8".

Postman Response Headers: image

Bruno Response Headers: image

Cibico99 commented 1 year ago

Git Bash Curl Headers:

image

Cibico99 commented 1 year ago

Adding "accept: application/xml" to request header fixes issue. Potentially a default being applied by axios on response?