용 python3连oanda的模拟交易api时现HTTP 오류 401: UNAUTHORIZED, 새로운 기술:
import urllib.parse
import urllib.request
url = 'https://api-fxpractice.oanda....'
access_token = 'a554db3a48ac8180a6996a5547ba1663-ac5947e64456cc5842a34f4ce05e4380'
account_id = 'cawa11'
values = {'accountId': account_id}
headers = {'승인': '전달자'+access_token}
data = urllib.parse.urlencode(values).encode("utf-8")
req = urllib.request.Request(url, 데이터, 헤더)
response = urllib.request.urlopen(req)
the_page = response.read()
报错:
추적(가장 최근 호출 마지막):
파일 "C:UserslenovoDesktopbb.py", 36행, <module>
파일 "C:Python34liburllibrequest.py", 161번째 줄, urlopen
으아악파일 "C:Python34liburllibrequest.py", 469행, 열려 있음
으아악파일 "C:Python34liburllibrequest.py", 579행, http_response
으아악파일 "C:Python34liburllibrequest.py", 507행, 오류
으아악파일 "C:Python34liburllibrequest.py", 441행, _call_chain
으아악파일 "C:Python34liburllibrequest.py", 587행, http_error_default
으아악urllib.error.HTTPError: HTTP 오류 401: 승인되지 않음
으아아아
문제가 해결되었습니다. 관심을 가져주셔서 감사합니다:
import 요청
import json
instruments = 'EUR_USD'
account_id = 'cawa11'
access_token = 'a554db3a48ac8180a6996a5547ba1663-ac5947e64456cc5842a3 4f4ce 05e4380'
params = {'악기':악기, 'accountId':account_id }
headers = {'Authorization':'Bearer '+access_token}
r = 요청.get("https://api-fxpractice.oanda.com/v1/prices",headers = 헤더, 매개변수 =params)
price = r.json()
print(price'prices'['instrument'].replace('_','/'),':',round((price'prices'['ask' ]+price'prices '['bid'])/2,4))
출력: EUR/USD: 1.0905