我正在使用 Python,我向 URL 发送了一个请求,并使用 httplib2 收到了回复。我得到的回复是在 JSon 中,我如何访问特定的参数。我目前拥有的是:
resp, content = parser.request(access_token_uri, method = 'POST', body = params, headers = headers)
raise Exception(content['access_token'])
我得到了错误
string indices must be integers, not str
我该怎么做?
谢谢