Skip to content

Instantly share code, notes, and snippets.

@jameswomack
Created July 13, 2011 21:40
Show Gist options
  • Save jameswomack/1081396 to your computer and use it in GitHub Desktop.
Save jameswomack/1081396 to your computer and use it in GitHub Desktop.
Magazine API
//this
"editions":{
"4":{
"id":"4",
"name":"My First edition",
"date_created":"2011-07-10 21:31:12",
"date_last_updated":"2011-07-10 21:31:12"
}
}
//should be
"editions":{
"1":{
"id":"4",
"name":"My First edition",
"date_created":"2011-07-10 21:31:12",
"date_last_updated":"2011-07-10 21:31:12"
}
}
//Or this:
"editions":{
{
"id":"4",
"name":"My First edition",
"date_created":"2011-07-10 21:31:12",
"date_last_updated":"2011-07-10 21:31:12"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment