5
我正在使用Python,並且我向URL發送了一個請求並使用httplib2接收了一個回覆。我得到的答覆是在JSon,我如何訪問一個特定的參數。我目前所面對的是:python,Json和字符串索引必須是整數,而不是str
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
我該怎麼辦呢?
謝謝