Returns a collection of the most recent articles written by a user (as defined by the :user parameter).
https://api.awesomesite.com/articles/user_articles.json
---------- | ---------: Response format | JSON Requires authentication? | Not yet Rate limited? | Not yet
Always specify a user in the request URL.
GET https://api.awesomesite.com/articles/user_articles.json?user=testuser1
[
{
article_id: 12,
user_id: 1,
article_uri: "https://www.awesomesite.com/articles/12",
comments:
[
{
user_id: 2,
comment_id: 3,
comment_body: "<p>This is a comment!</p>"
}
],
article_body: "<p>This is an article. I created it!</p>",
},
{
article_id: 14,
user_id: 1,
article_uri: "https://www.awesomesite.com/articles/14",
comments:
[
{
user_id: 4,
comment_id: 1,
comment_body: "<p>I didn't care for this article... :(</p>"
}
],
article_body: "<p>This is a second article. I created this one too!</p>",
}
]