0

現在apiclient、Google API ライブラリを使用しています。具体的には、python のものです。ドキュメントは本当に不明確です。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か?値をカスタマイズすることはできますか?

4

1 に答える 1