I am using message update API (UpdateMessage), and find that js-client does not support batch request.
Batch API need to request server with multipart body and header. But I can not set headers by call putRaw:
this._client.account().extension().messageStore(ids).putRaw(body);
So I need to call client.service.platform().put function, and also change body to multipart.
Can js-client support batch request that I can set headers and help to format multipart body.
Thanks.
I am using message update API (UpdateMessage), and find that js-client does not support batch request.
Batch API need to request server with multipart body and header. But I can not set headers by call putRaw:
So I need to call
client.service.platform().putfunction, and also change body to multipart.Can js-client support batch request that I can set headers and help to format multipart body.
Thanks.