Explain what GET /posts returns depending on auth

This commit is contained in:
Rabbit Whiskers 2012-09-30 14:02:34 -07:00
parent f06bc83106
commit 8cba92b8b6

View file

@ -76,7 +76,9 @@ Apps can create posts by sending them to the server. The server will then send n
### GET /posts
Apps can retrieve posts.
Apps can retrieve posts. If the request is not authenticated this will return the user's own public posts.
If the request is authenticated and the app has been granted the necessary scopes, this will also return
the user's non-public posts, posts from entities the user follows, and posts that mention the user.
{get_posts example}