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.