
# 查询当前霸屏应用包名
#### 应用场景
该接口可查询当前投屏显示的应用的包名
#### 前提条件
已完成登录认证，参考[登录认证](https://support.huaweicloud.com/ideahub-api/ideahub_05_0013.html#ZH-CN_TOPIC_0000001309671840)。
#### 接口概述
本接口可以查询当前投屏显示的应用的包名，接口详情请参考[查询当前霸屏应用包名](https://support.huaweicloud.com/ideahub-api/ideahub_05_0307.html#ZH-CN_TOPIC_0000001337935354)
#### 请求URL
/action.cgi?ActionID=WEB_GetSingleAppAPI
```
private static void WEB_SaveCfgParamAPI() {
        String uri = baseUrl + "/action.cgi?ActionID=WEB_GetSingleAppAPI";
        JSONObject obj = new JSONObject();
        obj.put("acCSRFToken", token);
        JSONObject result = HttpClientUtil.post(uri, obj, null);
   }
```
#### token的值为上述login操作获取的值，查询当前霸屏应用包名成功返回报文
{"success":1,"data":""}
