使用microsoft graph api在Intune中创建windowsMo​​bileMSI时出现错误请求

时间:2017-12-22 10:49:17

标签: microsoft-graph intune

我正在尝试在intune中创建一个windowsMo​​bileMSI应用程序。

我使用以下JSON:

 {
     "@odata.type": "#microsoft.graph.windowsMobileMSI",
     "displayName": "API uploaded Package",
     "description": "Desc of Api uploaded pkg",
     "publisher": "publisher 1",
     "isFeatured": false,
     "privacyInformationUrl": "",
     "informationUrl": null,
     "owner": "owner 1",
     "developer": "dev 1",
     "notes": "no notes",

 //File info    
     "committedContentVersion": "1",
     "fileName": "PackageProvider.msi",
     "size": 409664,
     "identityVersion": "1.0.8",
     "commandLine": "",
     "productCode": "{cc12adbd-8692-458d-b186-9d83b639ff1d}",
     "productVersion": "1.0.8",
     "ignoreVersionDetection": false
 }

然而,当我发布到

POST https://graph.microsoft.com/beta/deviceAppManagement/mobileApps

我收到错误消息

{
    "error": {
        "code": "BadRequest",
        "message": "An error has occurred - Operation ID (for customer support): 00000000-0000-0000-0000-000000000000 - Activity ID: fd5ee560-f4da-4255-b893-aa133c60fe4b - Url: https://fef.amsub0102.manage.microsoft.com/StatelessAppMetadataFEService/deviceAppManagement/mobileApps?api-version=5017-10-18 - CustomApiErrorPhrase: ",
        "innerError": {
            "request-id": "fd5ee560-f4da-4255-b893-aa133c60fe4b",
            "date": "2017-12-22T08:31:35"
        }
    }
}

我从现有的windowsMo​​bileMSI应用中获取了“//文件信息”评论下面的行。 我尝试删除这些行,但它没有帮助我。

有人可以告诉我我的JSON有什么问题吗?

2 个答案:

答案 0 :(得分:1)

我有建议只使用" identityVersion"在//文件信息之后。 所以这里现在有效的JSON:

{
     "@odata.type": "#microsoft.graph.windowsMobileMSI",
     "displayName": "API uploaded Package",
     "description": "Desc of Api uploaded pkg",
     "publisher": "publisher 1",
     "isFeatured": false,
     "privacyInformationUrl": "",
     "informationUrl": null,
     "owner": "owner 1",
     "developer": "dev 1",
     "notes": "no notes",

 //File info    
     "identityVersion": "1.0.8",
 }

答案 1 :(得分:0)

尝试从JSON中删除“size”:409664。