wufoo 获取 xml 条目

发布于 2024-10-12 12:21:12 字数 273 浏览 5 评论 0原文

我想从 wufoo 的 xml 格式的表单中获取条目(提要)。如果我使用报告来提取数据...我得到的只是 txt、csv、xls。 (XLS 不适用于我正在使用的 cms。)如果我使用 wufoo api get 请求,它会提示输入用户名和密码,但该用户名和密码不起作用,因为我希望 cms 动态提取数据。无论如何,我可以通过 api 通过 url 传递用户名和密码吗?或者无论如何,没有用户名和密码……或者其他什么。我不想发布数据...只是从 wufoo 数据库中提取记录。

对于这个主题的任何想法,我将不胜感激。

I'd like to get the entries (feed) from a form I have with wufoo in xml format. If I use reports to pull the data... all I get is txt, csv, xls. (XLS is not working with the cms I'm using.) If I use the wufoo api get request it prompts for a username and password which doesn't work since I want the cms to pull in the data dynamically. Is there anyway I can pass the username and password through the url with the api... or anyway around not having a username and password... or something else. I'm not wanting to post data... just pulling the records from the wufoo db.

I'd appreciate any thoughts on the subject.

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

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

发布评论

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

评论(1

稀香 2024-10-19 12:21:12

您可以使用 API 从 Wufoo 提取 xml 数据,包括报告。查看报告 API。您通过 Wufoo API 密钥而不是用户名/密码。您甚至可以通过 URL 本身执行此操作,如下所示:

https://{apiKey}:x@{subdomain}.wufoo.com/api/v3/reports/{reportIdentifier}.{xml|json}

但是,包括您的 API 密钥将被视为 坏主意,因此请确保您希望以这种方式公开您的凭据。最好的方法是通过 POST。

you can pull xml data from Wufoo, including reports, using the API. Check out the reports API. You pass through your Wufoo API Key instead of username/password. You may even do so though the URL itself, like so:

https://{apiKey}:x@{subdomain}.wufoo.com/api/v3/reports/{reportIdentifier}.{xml|json}

But, including your API key is considered a bad idea, so be sure you want to expose your credentials in that way. The best way to do this is through a POST.

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