KRL 将 XML 转换为 JSON
我正在为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论