KRL 将 XML 转换为 JSON

发布于 2024-11-08 11:05:22 字数 342 浏览 0 评论 0原文

我正在为 S3 开发 KRL 模块。每个请求都必须进行签名,并且签名包含一个 Date 对象,该对象必须在 AWS 上当前时间的 15 分钟内。签名作为“授权”HTTP 标头发送。

如果我将其设置为数据源,我会得到 XML > JSON 免费。不幸的是,您无法为数据源请求设置标头。

我尝试了 content.as('json') 但它将字符串中的 JSON 转换为实际的 Javascript 对象。

k=xml_string.as('json') // returns the xml_string unchanged

如何将返回的 XML 转换为 JSON?

I'm working on a KRL module for S3. Each request has to be signed, and the signature covers a Date object which has to be within 15 minutes of the current time on AWS. The signature is sent as an 'Authorization' HTTP header.

If I set it up as a datasource I would get the XML > JSON for free. Unfortunately you can't set headers for a datasource request.

I tried content.as('json') but that converts JSON in a string to actual Javascript objects.

k=xml_string.as('json') // returns the xml_string unchanged

How can I convert the returned XML to JSON?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文