Closed luckman212 closed 7 months ago
Approved - Pending means pending approval. Wait for the status to be approved. They really need to change this status, I have seen so many questions about this.
And macOS is not currently supported. There are some file io issues (for arm-based) and window-terminals is used to spawn a seperate window to show the stream output. I am considering some alternatives but these fixes are not high on the todo list.
Hi @tylerebowers thank you for this.
Abstract
I'm trying to build my first Schwab Python client and hitting some walls. I was very happy to stumble onto your repo, and want to use it as a stepping stone to a simple client that can fetch a token via OAuth and download a list of positions from my TDA (Schwab) account.
What I've done
I've registered and been approved for developer access, and created my first app on beta-developer.schwab.com. I added my
appSecret
andappKey
touniverse.py
. The status of my app is currently Approved - Pending, like so:(that may be the problem, not sure...)
Problems
First "problem" was I had to comment out
stream
from themain.py
imports because thewindow_terminal
package is only compatible with Windows and Linux (I use macOS...)Next I was getting this somewhat cryptic error which turned out to be a red herring
The actual problem was the
main.py
file was saved with Windows line-endings, which was throwing off my shell. Switching it to Unix format cleared that up.TL;DR
So where I am now is this:
screenshot:
Is any of this normal in your opinion?