Advertisement
Guest User

Untitled

a guest
Nov 27th, 2011
490
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. // http://localhost:5050/articles/1
  2. {
  3. "_type": "Article",
  4. "href": "http://localhost:5050/articles/1",
  5. "title": "First Article",
  6. "text": "Lorem Ipsum",
  7. "comments_href": "http://localhost:5050/articles/1/comments",
  8. "latest_comment_href": "http://localhost:5050/articles/1/comments/latest"
  9. }
  10.  
  11. // http://localhost:5050/articles/1/comments/1
  12. {
  13. "_type": "Comment",
  14. "href": "http://localhost:5050/articles/1/comments/1",
  15. "author": "Paul",
  16. "text": "This is the first comment on article 1",
  17. "article_href": "http://localhost:5050/articles/1"
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement