要使用 Azure 存储(模拟器)表服务,我需要为我的 TypeScript 浏览器应用程序添加一个 CORS 规则。
我想使用 REST 接口(来自 Postman,而不是具有同源策略的浏览器)手动添加该规则。该文档没有提供模拟器的正确 URL ( https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/set-table-service-properties )。对于 DML 命令,就像在我的请求中一样(https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/insert-entity)。
请求是:
PUT /devstoreaccount1/?restype=service&comp=properties HTTP/1.1
Host: 127.0.0.1:10002
x-ms-version: 2013-08-15
Content-Type: application/xml
Cache-Control: no-cache
Postman-Token: 280f880b-d6df-bb1d-bc12-eca411e18310
<StorageServiceProperties>
<Cors>
<CorsRule>
<AllowedOrigins>http://localhost:3030</AllowedOrigins>
<AllowedMethods>GET,PUT,POST</AllowedMethods>
<MaxAgeInSeconds>500</MaxAgeInSeconds>
<ExposedHeaders>x-ms-meta-data*,x-ms-meta-target*,x-ms-meta-abc</ExposedHeaders>
<AllowedHeaders>x-ms-meta-*</AllowedHeaders>
</CorsRule>
</Cors>
</StorageServiceProperties>
结果是:
<?xml version="1.0" encoding="utf-8"?>
<m:error xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata">
<m:code>ResourceNotFound</m:code>
<m:message xml:lang="en-US">The specified resource does not exist.
RequestId:8137042f-0402-46c6-aa8c-fbf9f4601d33
Time:2017-01-15T09:13:51.7500394Z</m:message>
</m:error>
什么是正确的 URL 或我做错了什么?