From 185d36f49cdbde80871cb105a3bee00ec355c1b1 Mon Sep 17 00:00:00 2001 From: Jesse Stuart Date: Tue, 16 Oct 2012 19:31:16 -0400 Subject: [PATCH] Update app-server docs: before_time/since_time now reference received_at instead of published_at --- content/docs/app-server.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/docs/app-server.md b/content/docs/app-server.md index 8bc68eb..f4ad8a1 100644 --- a/content/docs/app-server.md +++ b/content/docs/app-server.md @@ -115,8 +115,8 @@ GET parameters can be used to filter and paginate the returned posts. | `before_id` | Posts made before a specific post identifier. | | `since_id_entity` | The entity which made the post that has the id given in `since_id`. This can be omitted if the post's owner is the one receiving the `GET /posts` request. | | `before_id_entity` | The entity which made the post that has the id given in `before_id`. This can be omitted if the post's owner is the one receiving the `GET /posts` request. | -| `since_time` | Posts with `published_at` greater than the specified unix epoch. | -| `before_time` | Posts with `published_at` less than the specified unix epoch. | +| `since_time` | Posts with `received_at` greater than the specified unix epoch. | +| `before_time` | Posts with `received_at` less than the specified unix epoch. | | `entity` | Posts published by the specified entity. | | `mentioned_entity` | Posts that mention the specified entity. | | `post_types` | Posts that match specific comma-separated type URIs. |