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 th开发者_开发知识库oughts on the subject.
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.
精彩评论