我想创建一个mobileAppContentFile。为此,我发出 POST 请求:
https://graph.microsoft.com/beta/deviceAppManagement/mobileApps/0122f94e-45c4-458a-a25a-c08135a036fc/microsoft.graph.windowsMobileMSI/contentVersions/1/files
使用此请求正文:
{
"@odata.type": "#microsoft.graph.mobileAppContentFile",
"azureStorageUri": "https://NAME.blob.core.windows.net/intune/TestApp.msi",
"name": "TestApp.msi",
"isCommitted": false,
"uploadState": "azureStorageUriRequestPending"
}
我收到201 Created
回复但是azureStorageUri
:null
{
"@odata.context": "https://graph.microsoft.com/beta/$metadata#deviceAppManagement/mobileApps('0122f94e-45c4-458a-a25a-c08135a036fc')/microsoft.graph.windowsMobileMSI/contentVersions('1')/files/$entity",
"azureStorageUri": null,
"azureStorageUriExpirationDateTime": null,
"createdDateTime": "0001-01-01T00:00:00Z",
"id": "ca57173c-5f67-4048-90bf-3bac136de964",
"isCommitted": false,
"manifest": "bWFuaWZlc3Q=",
"name": "TestApp.msi",
"size": 0,
"sizeEncrypted": 0,
"uploadState": "azureStorageUriRequestPending"
}
可能是什么问题呢?