socket.gaierror:[Errno 11004] getaddrinfo失败,django

时间:2018-05-05 13:51:36

标签: django python-3.x python-requests betfair

我正在尝试按照此[教程] [1]创建一个Betfair互动登录 我继续得到错误我的app_key是正确的,我的用户名和密码也正确,但我想我没有得到锄头设置它正常工作请任何帮助将不胜感激这里是我的代码

import requests
import json

login_hearders = {
        'Accept' : 'application/json',
        'X-Application':APP_KEY_HERE,
        'Content-Type':'application/x-www-form-urlencoded '}

url = 'https://identitysso.betfair.au/api/login'

payload = {'username':'USERNAME_HERE','password':'PASSWORD_HERE'}


r = requests.post(url, data=payload,headers=login_hearders)

print(json.loads(r.text))

1 个答案:

答案 0 :(得分:0)

我不知道您要尝试遵循哪个教程,但是该特定主机(identitysso.betfair.au)是错误的。您需要 com .au版本。

me@host$ host identitysso.betfair.au
Host identitysso.betfair.au not found: 3(NXDOMAIN)

me@host$ host identitysso.betfair.com.au
identitysso.betfair.com.au has address 987.654.32.1

(未显示实际的DNS解析,因为这是DNS的重点)