如何从 python 中的 api 响应访问 _content

How to access _content from a api response in python

我正在使用 web.py 调用 api 并授权令牌是否正确。 它 returns 一个响应,我需要访问对象内的 _content 变量。它 returns 类型 "<class 'requests.models.Response'>" 的对象,如何访问响应中的 _content。

代码如下:

url = AuthURL['URL'] +"/GetSession/"+secToken+"/"+Domain
try:
   #assert isinstance(url, object)
    response = requests.get(url)
    print type(response)
    except URLError, err:
  logger.info("Authorization failed",err)
  return response

回应

您正在处理对象并访问对象属性,您需要使用这样的表示法:

response.authResult.content