smnirven
smnirven

Reputation: 1528

Hitting a XML API using phonegap?

I am looking at using phonegap to create a mobile app that accesses a xml api, I noticed there is a HTTP class defined in phonegap http://phonegap.pbworks.com/JavaScript-API#http, but I can't seem to find anyone that has used it yet. Any examples out there or hints/tips on using the http class to access a xml api?

Upvotes: 0

Views: 763

Answers (1)

davejohnson
davejohnson

Reputation: 1447

I don't think that the HTTP class nor the JavaScript API for it has been implemented yet on any of the platforms.

You should be able to use the native JavaScript XMLHttpRequest object, aside from maybe in the Blackberry browser.

Upvotes: 2

Related Questions