再会!我对 Google Play EMM 感兴趣
我已经创建了设备策略控制器并创建了工作配置文件。创建了一个 Google Developers Console 项目并添加了 EMM API。创建主服务帐户。在主服务帐户中,我获得了 EMM 令牌。
我已经下载了适用于 Java 的 Google Play EMM API 客户端库。据我所知,我只需要调用类似的东西
Enterprise enterprise = new Enterprise();
enterprise.setPrimaryDomain(primaryDomainName);
Enterprise result = androidEnterprise.enterprises()
.enroll(authenticationToken, enterprise).execute();
EnterpriseAccount enterpriseAccount = new EnterpriseAccount();
enterpriseAccount.setAccountEmail(serviceAccountEmail);
androidEnterprise.enterprises().setAccount(result.getId(),
enterpriseAccount).execute();
第一个问题 - 如何以语法方式将设备(android 手机)添加到主服务帐户?如果我默认使用 Google Android for Work 和 Google 系统 - 我会使用“设备注册”应用程序。但我不知道如何以编程方式做到这一点。
第二个 - 在示例中有这样的行
// Optional: you might want to store the bound enterprise's info, but
// these details can always be retrieved with an Enterprises.List call.
他们在哪里存储?在谷歌服务器上?当我这样做时,我认为是对的吗 enterprise.setPrimaryDomain(primaryDomainName); 我可以访问所有注册的客户吗?
第三 - 有没有 NORMAL 样品?或者一步一步怎么做?毕竟关于这一切的信息并不多(谢谢。