in this test code sample:
import httplib2
import json
url="https://www.googleapis.com/oauth2/v1/tokeninfo?
access_token=61651651651"
h=httplib2.Http()
test1=json.loads(h.request(url,'GET')[1])
i don't understand what is the meaning of [1] in the last line, if i use [2] for example i get an error IndexError: tuple index out of range, [0] gives me TypeError: the JSON object must be str, bytes or bytearray, not 'Response', so every time i load json response i have to use [1]?