Postman发XML能拿到response但axios发xml一直报错
Post能拿到正确Response:
axios一直报错The XML document is not well formed:
代码:
let reqDict= {};
reqDict.url="https://onlinetools.ups.com/webservices/Track";
reqDict.method="POST";
reqDict.headers={'content-type':'application/xml;charset=UTF-8'};
reqDict.data="<?xml version='1.0' encoding='utf8'?><AccessRequest><AccessLicenseNumber>2C89134F4D10E2D8</AccessLicenseNumber><UserId>CST6636EY</UserId><Password>123456Aa</Password></AccessRequest><TrackRequest><Request><TransactionReference><CustomerContext>Customer context</CustomerContext><XpciVersion>1.0</XpciVersion></TransactionReference><RequestAction>Track</RequestAction><RequestOption>none</RequestOption></Request><TrackingNumber>1Z8V14X86694859228</TrackingNumber></TrackRequest>";
axios(reqDict).then(res=>{
console.log(res);
})
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尼玛,自己犯了超级低级错误,Postman和代码的URL地址都没对上。。。
对比两者
header request
就好啦你这个
The XML document is not well formed:
? 是哪里的?你抓包或者用network看一下。
content-type发的对吗?