我正在使用Google Play EMM API创建新用户,但出现内部服务器错误。我有一个有效的访问令牌,该令牌已使用创建企业时使用的同一Gmail创建。另外,我将发送此处列出的所有参数:https://developers.google.com/android/work/play/emm-api/v1/users/insert
但是不允许我创建用户。
这是我的请求正文:
{
"managementType": "emmManaged",
"accountType": "userAccount",
"primaryEmail": "dummy@.com",
"accountIdentifier": "dummyIdentifire",
"displayName": "DisplayName"
}
答案 0 :(得分:0)
Google Play EMM API仅对完成了registration process中的所有步骤并且已被Google批准加入该计划的企业移动性管理(EMM)解决方案提供商可用。
到目前为止,Android Enterprise不再使用Google Play EMM API接受自定义设备策略控制器(DPC)的新注册。现在,所有新的EMM解决方案都应使用Android Management API,它带有Google自己的DPC。
有关如何使用Android Management API构建公共解决方案的信息,请参见Develop your solution和Release your solution。