Skip to content

Instantly share code, notes, and snippets.

@couchoud
Created August 19, 2010 02:58
Show Gist options
  • Save couchoud/536884 to your computer and use it in GitHub Desktop.
Save couchoud/536884 to your computer and use it in GitHub Desktop.
post 4 - cs1
// A generic User object
user = {
id : 1,
firstName : "John",
lastName : "Doe",
email : "john.doe@fooey.com"
}
// REST api endpoint
"http://www.yourrestapi.com/users/1/"
// A generic Recipe object
recipe = {
id : 5,
user_id : 1,
title : "My Delicious Recipe",
}
// REST api endpoint
"http://www.yourrestapi.com/recipes/5/"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment