Postman发XML能拿到response但axios发xml一直报错

发布于 2022-09-12 13:25:42 字数 1177 浏览 21 评论 0

Post能拿到正确Response:
Post能拿到Response
axios一直报错The XML document is not well formed:
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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

夏日浅笑〃 2022-09-19 13:25:42

尼玛,自己犯了超级低级错误,Postman和代码的URL地址都没对上。。。

错误地址:
https://onlinetools.ups.com/webservices/Track
正确地址:
https://onlinetools.ups.com/ups.app/xml/Track 
星光不落少年眉 2022-09-19 13:25:42

对比两者 header request 就好啦

标点 2022-09-19 13:25:42

你这个 The XML document is not well formed: ? 是哪里的?

你抓包或者用network看一下。

content-type发的对吗?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文