Skip to content

Instantly share code, notes, and snippets.

@bitzesty
Created April 26, 2010 11:13
Show Gist options
  • Save bitzesty/379214 to your computer and use it in GitHub Desktop.
Save bitzesty/379214 to your computer and use it in GitHub Desktop.
xml2json.heroku.com example with the pivotal tracker API
$.ajax({
type: "GET",
url: 'http://xml2json.heroku.com',
data:'url=https://www.pivotaltracker.com/services/v3/projects/'+projectId+'/iterations/current?token='+trackerToken,
dataType: 'jsonp',
success: function(data) {
console.log(data);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment