From d441e30f2ff98fc6c71379f00661cf5cd0574990 Mon Sep 17 00:00:00 2001 From: Vandeputte Brice Date: Thu, 16 May 2024 20:34:00 +0200 Subject: [PATCH] partial #146 - Update viewing-feeds.mdx sample to avoid 500 improve example to get Feed with an empty cursot to avoid false example that produce 500 error --- docs/tutorials/viewing-feeds.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/tutorials/viewing-feeds.mdx b/docs/tutorials/viewing-feeds.mdx index e868f21bb..dfa139fb0 100644 --- a/docs/tutorials/viewing-feeds.mdx +++ b/docs/tutorials/viewing-feeds.mdx @@ -26,7 +26,7 @@ The Bluesky agent you created in the [Get Started](/docs/get-started) section ha ```typescript title="agent.getTimeline" const { data } = await agent.getTimeline({ - cursor: "...", + cursor: "", limit: 30, }); @@ -36,7 +36,7 @@ The Bluesky agent you created in the [Get Started](/docs/get-started) section ha ```python title="client.get_timeline" - data = client.get_timeline(cursor='...', limit=30) + data = client.get_timeline(cursor='', limit=30) feed = data.feed next_page = data.cursor