从 android 管理层 API 调用中获取 json 响应
Get back json response from android management API call
我在我的 android 应用程序中使用 android 管理 api。现在我想获取我的 android 应用程序的政策 我正在使用此方法 policies.get
来获取政策。现在我想要的实际上是从我的应用程序中的响应中获取 json 。我就是这样做的
checkPolicy(ENTERPRISE_ID,name);
private void checkPolicy(String enterpriseName, String policyId)
throws IOException {
System.out.println("Getting policy...");
String name = enterpriseName + "/policies/" + policyId;
androidManagementClient
.enterprises()
.policies()
.get(name)
.execute();
}
这里我用的是正确的获取策略的方法,但是我不知道如何得到响应?我的意思是像这样 page。我输入参数并收到 json。现在我需要在应用程序中做什么才能得到响应 json
您的请求应采用 enterprises/{enterpriseId}/policies/{policyId}
的形式
并且您可以将响应保存到变量中:
var policyJson = androidManagementClient
.enterprises()
.policies()
.get(name)
.execute();
我在我的 android 应用程序中使用 android 管理 api。现在我想获取我的 android 应用程序的政策 我正在使用此方法 policies.get
来获取政策。现在我想要的实际上是从我的应用程序中的响应中获取 json 。我就是这样做的
checkPolicy(ENTERPRISE_ID,name);
private void checkPolicy(String enterpriseName, String policyId)
throws IOException {
System.out.println("Getting policy...");
String name = enterpriseName + "/policies/" + policyId;
androidManagementClient
.enterprises()
.policies()
.get(name)
.execute();
}
这里我用的是正确的获取策略的方法,但是我不知道如何得到响应?我的意思是像这样 page。我输入参数并收到 json。现在我需要在应用程序中做什么才能得到响应 json
您的请求应采用 enterprises/{enterpriseId}/policies/{policyId}
并且您可以将响应保存到变量中:
var policyJson = androidManagementClient
.enterprises()
.policies()
.get(name)
.execute();