Hi,
I am repeatedly getting the 403 forbidden error. As per this, the basic issue looks to be a mismatch of keys and urls (I have a paid subscription and the keys are not stale, so this looks to be the only way this could happen).
I am pasting my relevant piece of code here. Can someone check and see whether this is correct or not (this has been borrowed heavily from this link):
================
TRADE_API_KEY = ‘PAPER KEY’
TRADE_API_SECRET = ‘PAPER SECRET KEY’
TRADE_API_URL = “https://api.alpaca.markets”
CLIENT = OptionHistoricalDataClient(TRADE_API_KEY, TRADE_API_SECRET)
CLIENT_STOCK = StockHistoricalDataClient(TRADE_API_KEY, TRADE_API_SECRET)
PAPER = True
if PAPER:
TRADE_CLIENT =
TradingClient(api_key=TRADE_API_KEY, secret_key=TRADE_API_SECRET, paper=PAPER, url_override=None)
else:
TRADE_CLIENT = TradingClient(api_key=TRADE_API_KEY, secret_key=TRADE_API_SECRET, paper=PAPER, url_override=TRADE_API_URL)
====================
What exactly is wrong with this piece of code?
Thanks