wufoo 获取 xml 条目
我想从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 API 从 Wufoo 提取 xml 数据,包括报告。查看报告 API。您通过 Wufoo API 密钥而不是用户名/密码。您甚至可以通过 URL 本身执行此操作,如下所示:
但是,包括您的 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:
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.