我目前正在使用apiclient
,Google API库。特别是蟒蛇的。文档确实不清楚。我不知道如何利用从回调中获得request_id
。我的意思是对于这段代码:
from apiclient.http import BatchHttpRequest
def insert_animal(request_id, response, exception):
if exception is not None:
# Do something with the exception
pass
else:
# Do something with the response
pass
service = build('farm', 'v2')
batch = service.new_batch_http_request(callback=insert_animal)
batch.add(service.animals().insert(name="sheep"))
batch.add(service.animals().insert(name="pig"))
batch.add(service.animals().insert(name="llama"))
batch.execute(http=http)
谁能解释一下request_id
?我可以自定义值吗?
request_id
是将请求添加到批处理请求的顺序的整数。它从 1 开始。
尽管内容是整数,但它存储为字符串。确实很奇怪。