Created
April 26, 2010 11:13
-
-
Save bitzesty/379214 to your computer and use it in GitHub Desktop.
xml2json.heroku.com example with the pivotal tracker API
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$.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