
업비트 api 가져오기-주시세캔들조회에서 교안의 코드대로 했는데
url = 'https://api.upbit.com/v1/candles/weeks?market=KRW-BTC&count=2headers'
headers = {"accept": "application/json"}
response = requests.get(url, headers=headers)
btc_df = pd.DataFrame(json.loads(response.text))
btc_df를 하니 Type mismatch error. Check the parameters type! 로 떠서 안되는데 해결방법 알고싶습니다
