Created
February 13, 2014 02:57
-
-
Save dulichan/8968945 to your computer and use it in GitHub Desktop.
Example of Jaggery GET with Callback
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
var url = "https://api.twitter.com/1/statuses/user_timeline.json"; | |
var data = { include_entities:true,include_rts:true,screen_name:"wso2",count:1 }; | |
var twitterJson = get(url, data ,"json", function(data, xhr){ | |
print(data); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment