Send a HTTP Request in Python - urllib2.HTTPError: HTTP Error 401: Unauthorized

Send a HTTP Request in Python - urllib2.HTTPError: HTTP Error 401: Unauthorized

我正在尝试编写 python 脚本来发送 HTTP 请求。我阅读了 urllib2 库 (https://docs.python.org/2/howto/urllib2.html#id6) 上的 Python 文档并获取了带有身份验证的示例代码,但我仍然遇到错误。

这是我的代码(* top_level_url = 登录 url,a_url = api 请求,在网络上运行,并显示响应):

import urllib2

password_mgr = urllib2.HTTPPasswordMgrWithDefaultRealm()

# Add the username and password.
# If we knew the realm, we could use it instead of None.
user='MY_USER_NAME'
passwd='MY_PASSWORD'
top_level_url = "https://next.adjust.com/#/login"
password_mgr.add_password(None, top_level_url, user, passwd)

handler = urllib2.HTTPBasicAuthHandler(password_mgr)

# create "opener" (OpenerDirector instance)
opener = urllib2.build_opener(handler)

# use the opener to fetch a URL
a_url = 'https://api.adjust.com/kpis/v1/vzpmna78ud8m/cohorts?start_date=2016-12-05&end_date=2016-12-06&kpis=sessions&grouping=os_names,countries'
opener.open(a_url)

# Install the opener.
# Now all calls to urllib2.urlopen use our opener.
urllib2.install_opener(opener)

但是当我 运行 代码时,我得到一个错误:

Traceback (most recent call last):
  File "httptest3.py", line 19, in <module>
    opener.open(a_url)
  File "/usr/lib64/python2.7/urllib2.py", line 437, in open
    response = meth(req, response)
  File "/usr/lib64/python2.7/urllib2.py", line 550, in http_response
    'http', request, response, code, msg, hdrs)
  File "/usr/lib64/python2.7/urllib2.py", line 475, in error
    return self._call_chain(*args)
  File "/usr/lib64/python2.7/urllib2.py", line 409, in _call_chain
    result = func(*args)
  File "/usr/lib64/python2.7/urllib2.py", line 558, in http_error_default
    raise HTTPError(req.get_full_url(), code, msg, hdrs, fp)
 urllib2.HTTPError: HTTP Error 401: Unauthorized

我尝试了多种解决此错误的方法,但我总是得到相同的方法。

有人知道我的代码有什么问题吗? 或者您有其他有效的代码示例吗?

您 adjust.com 对他们的 api 使用了另一种身份验证,而不是您正在使用的。

你应该阅读这个文档: https://docs.adjust.com/en/kpi-service/#authentication

您应该将此 http header 添加到您的请求中,而不是使用用户名和密码:

Authorization: Token token=your_user_token

或者您可以将 &user_token=your_user_token 添加到您的 api 通话中。