찾다

 >  Q&A  >  본문

python3.x - HTTP 오류 401: Python이 oanda의 시뮬레이션된 거래 API에 연결할 때 UNAUTHORIZED가 나타납니까?

용 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: 승인되지 않음

漂亮男人漂亮男人2776일 전860

모든 응답(2)나는 대답할 것이다

  • 某草草

    某草草2017-05-18 10:58:04

    으아아아

    회신하다
    0
  • PHP中文网

    PHP中文网2017-05-18 10:58:04

    문제가 해결되었습니다. 관심을 가져주셔서 감사합니다:
    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

    회신하다
    0
  • 취소회신하다