dphugo

Results 3 comments of dphugo

Hi @Alaidanengia , You are missing an = sign in your api_url string between ?token and {IEX_CLOUD_API_TOKEN}: > api_url = f'[https://sandbox.iexapis.com/stable/stock/{symbol}/quote/?token{IEX_CLOUD_API_TOKEN}](https://sandbox.iexapis.com/stable/stock/%7Bsymbol%7D/quote/?token%7BIEX_CLOUD_API_TOKEN%7D)' Should be: `api_url = f'https://sandbox.iexapis.com/stable/stock/{symbol}/quote/?token={IEX_CLOUD_API_TOKEN}'`

Hi @Dereklenny , What Response code do you get when you run the following?: ``` data = requests.get(api_url) data ``` If it doesn't return , it means there's a problem...

Hi @Dereklenny , A Response of 403 means the iexpais.com server denied the request ([(https://en.wikipedia.org/wiki/HTTP_403]) The "data.text" gives us the detail of why we got a Response of 403. It...