From a74e6c3a7dd518f451c74b42dbd42e528e80b509 Mon Sep 17 00:00:00 2001 From: Graeme Holliday Date: Wed, 22 Jan 2025 12:29:36 -0500 Subject: [PATCH] docs tweaks --- docs/oauth.rst | 4 ++-- docs/sync-async.rst | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/oauth.rst b/docs/oauth.rst index f7aa4eb..f82f32a 100644 --- a/docs/oauth.rst +++ b/docs/oauth.rst @@ -1,4 +1,4 @@ -oauth +OAuth ===== Unless you're creating a web app with an option for a TradeStation login, you can probably skip this section! @@ -52,7 +52,7 @@ Here's a simple example of how you could do this on your own server, using `Fast uvicorn.run(app, host="0.0.0.0", port=3001) -.. note: +.. note:: If you run into a CSRF error, it probably has to do with your session state! Try clearing your browser cookies or testing in an incognito window. That should be enough to get you started! diff --git a/docs/sync-async.rst b/docs/sync-async.rst index 736ac44..8a89458 100644 --- a/docs/sync-async.rst +++ b/docs/sync-async.rst @@ -1,5 +1,5 @@ -sync/async -========== +Using sync/async +================ After creating a session (which is always initialized synchronously), the rest of the API endpoints implemented in the SDK have both sync and async implementations.