有谁知道如何使用 post man 批量插入 azure table 存储
does anyone know how to batch insert to azure table storage using post man
我想使用 postman 对 azure table 存储执行实体组事务。请让我知道执行批处理操作的示例请求 body。我尝试使用 this link 中提到的示例请求 body 到达终点,但仍然没有成功。
URL: https://azautomationdiag.table.core.windows.net/$batch"?sp==SASTokenTest"
Header: enter image description here
参数:enter image description here
Body:
`
--batch_f351702c-c8c8-48c6-af2c-91b809c651ce
Content-Type: multipart/mixed; boundary=changeset_8a28b620-b4bb-458c-a177-0959fb14c977
--changeset_8a28b620-b4bb-458c-a177-0959fb14c977
Content-Type: application/http
Content-Transfer-Encoding: binary
POST https://azautomationdiag.table.core.windows.net/InstalledApplications HTTP/1.1
Content-Type: application/json
Content-Length: [1322]
Accept: application/json;odata=minimalmetadata
DataServiceVersion: 3.0;
{"PartitionKey":"Channel_19", "RowKey":"1", "Rating":9, "Text":".NET..."}
--changeset_8a28b620-b4bb-458c-a177-0959fb14c977
Content-Type: application/http
Content-Transfer-Encoding: binary
POST https://azautomationdiag.table.core.windows.net/InstalledApplications HTTP/1.1
Content-Type: application/json
Accept: application/json;odata=minimalmetadata
Prefer: return-no-content
DataServiceVersion: 3.0;
{"PartitionKey":"Channel_19", "RowKey":"2", "Rating":9, "Text":"Azure..."}
--changeset_8a28b620-b4bb-458c-a177-0959fb14c977
Content-Type: application/http
Content-Transfer-Encoding: binary
--changeset_8a28b620-b4bb-458c-a177-0959fb14c977--
--batch_f351702c-c8c8-48c6-af2c-91b809c651ce
`
响应:enter image description here
根据我的测试,请求体应该是这样的
--batch_guid
Content-Type: multipart/mixed; boundary=changeset_guid
--changeset_guid
Content-Type: application/http
Content-Transfer-Encoding: binary
<your request>
--changeset_guid
Content-Type: application/http
Content-Transfer-Encoding: binary
<your request>
--changeset_guid--
--batch_guid--
例如
要求
https://andyprivate.table.core.windows.net?$batch{sastoken}
页眉
MaxDataServiceVersion: 3.0;NetFx
Accept: application/json; odata=minimalmetadata
DataServiceVersion: 3.0;
x-ms-version: 2017-07-29
Content-Type: multipart/mixed; boundary=batch_e4071276-6bca-459b-af6b-c18e5eb42106
Accept-Charset: UTF-8
Connection:Keep-Alive
请求正文
--batch_e4071276-6bca-459b-af6b-c18e5eb42106
Content-Type: multipart/mixed; boundary=changeset_52c5f249-48de-4ae5-89e6-b288a26099f1
--changeset_52c5f249-48de-4ae5-89e6-b288a26099f1
Content-Type: application/http
Content-Transfer-Encoding: binary
POST https://andyprivate.table.core.windows.net/test HTTP/1.1
Accept: application/json;odata=minimalmetadata
Content-Type: application/json
Prefer: return-no-content
DataServiceVersion: 3.0;
{"PartitionKey":"Channel_19", "RowKey":"1", "Rating":9, "Text":".NET..."}
--changeset_52c5f249-48de-4ae5-89e6-b288a26099f1
Content-Type: application/http
Content-Transfer-Encoding: binary
POST https://andyprivate.table.core.windows.net/test HTTP/1.1
Accept: application/json;odata=minimalmetadata
Content-Type: application/json
Prefer: return-no-content
DataServiceVersion: 3.0;
{"PartitionKey":"Channel_19", "RowKey":"2", "Rating":9, "Text":"Azure..."}
--changeset_52c5f249-48de-4ae5-89e6-b288a26099f1
Content-Type: application/http
Content-Transfer-Encoding: binary
POST https://andyprivate.table.core.windows.net/test HTTP/1.1
Accept: application/json;odata=minimalmetadata
Content-Type: application/json
Prefer: return-no-content
DataServiceVersion: 3.0;
{"PartitionKey":"Channel_19", "RowKey":"3", "Rating":4, "Text":"Java..."}
--changeset_52c5f249-48de-4ae5-89e6-b288a26099f1--
--batch_e4071276-6bca-459b-af6b-c18e5eb42106--
我想使用 postman 对 azure table 存储执行实体组事务。请让我知道执行批处理操作的示例请求 body。我尝试使用 this link 中提到的示例请求 body 到达终点,但仍然没有成功。
URL: https://azautomationdiag.table.core.windows.net/$batch"?sp==SASTokenTest"
Header: enter image description here
参数:enter image description here
Body:
`
--batch_f351702c-c8c8-48c6-af2c-91b809c651ce
Content-Type: multipart/mixed; boundary=changeset_8a28b620-b4bb-458c-a177-0959fb14c977
--changeset_8a28b620-b4bb-458c-a177-0959fb14c977
Content-Type: application/http
Content-Transfer-Encoding: binary
POST https://azautomationdiag.table.core.windows.net/InstalledApplications HTTP/1.1
Content-Type: application/json
Content-Length: [1322]
Accept: application/json;odata=minimalmetadata
DataServiceVersion: 3.0;
{"PartitionKey":"Channel_19", "RowKey":"1", "Rating":9, "Text":".NET..."}
--changeset_8a28b620-b4bb-458c-a177-0959fb14c977
Content-Type: application/http
Content-Transfer-Encoding: binary
POST https://azautomationdiag.table.core.windows.net/InstalledApplications HTTP/1.1
Content-Type: application/json
Accept: application/json;odata=minimalmetadata
Prefer: return-no-content
DataServiceVersion: 3.0;
{"PartitionKey":"Channel_19", "RowKey":"2", "Rating":9, "Text":"Azure..."}
--changeset_8a28b620-b4bb-458c-a177-0959fb14c977
Content-Type: application/http
Content-Transfer-Encoding: binary
--changeset_8a28b620-b4bb-458c-a177-0959fb14c977--
--batch_f351702c-c8c8-48c6-af2c-91b809c651ce
` 响应:enter image description here
根据我的测试,请求体应该是这样的
--batch_guid
Content-Type: multipart/mixed; boundary=changeset_guid
--changeset_guid
Content-Type: application/http
Content-Transfer-Encoding: binary
<your request>
--changeset_guid
Content-Type: application/http
Content-Transfer-Encoding: binary
<your request>
--changeset_guid--
--batch_guid--
例如
要求
https://andyprivate.table.core.windows.net?$batch{sastoken}
页眉
MaxDataServiceVersion: 3.0;NetFx
Accept: application/json; odata=minimalmetadata
DataServiceVersion: 3.0;
x-ms-version: 2017-07-29
Content-Type: multipart/mixed; boundary=batch_e4071276-6bca-459b-af6b-c18e5eb42106
Accept-Charset: UTF-8
Connection:Keep-Alive
请求正文
--batch_e4071276-6bca-459b-af6b-c18e5eb42106
Content-Type: multipart/mixed; boundary=changeset_52c5f249-48de-4ae5-89e6-b288a26099f1
--changeset_52c5f249-48de-4ae5-89e6-b288a26099f1
Content-Type: application/http
Content-Transfer-Encoding: binary
POST https://andyprivate.table.core.windows.net/test HTTP/1.1
Accept: application/json;odata=minimalmetadata
Content-Type: application/json
Prefer: return-no-content
DataServiceVersion: 3.0;
{"PartitionKey":"Channel_19", "RowKey":"1", "Rating":9, "Text":".NET..."}
--changeset_52c5f249-48de-4ae5-89e6-b288a26099f1
Content-Type: application/http
Content-Transfer-Encoding: binary
POST https://andyprivate.table.core.windows.net/test HTTP/1.1
Accept: application/json;odata=minimalmetadata
Content-Type: application/json
Prefer: return-no-content
DataServiceVersion: 3.0;
{"PartitionKey":"Channel_19", "RowKey":"2", "Rating":9, "Text":"Azure..."}
--changeset_52c5f249-48de-4ae5-89e6-b288a26099f1
Content-Type: application/http
Content-Transfer-Encoding: binary
POST https://andyprivate.table.core.windows.net/test HTTP/1.1
Accept: application/json;odata=minimalmetadata
Content-Type: application/json
Prefer: return-no-content
DataServiceVersion: 3.0;
{"PartitionKey":"Channel_19", "RowKey":"3", "Rating":4, "Text":"Java..."}
--changeset_52c5f249-48de-4ae5-89e6-b288a26099f1--
--batch_e4071276-6bca-459b-af6b-c18e5eb42106--