Skip to content

Instantly share code, notes, and snippets.

@faabiosr
Created November 12, 2012 22:03
Show Gist options
  • Save faabiosr/4062294 to your computer and use it in GitHub Desktop.
Save faabiosr/4062294 to your computer and use it in GitHub Desktop.
RestClient - Titanium Example
var RestClient = require('/libs/RestClient');
rest = new RestClient('YOUR API KEY');
rest.get('/users/10',function(result){
result.error ? alert('Error!') : alert(result.id);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment