1e41f4b71Sopenharmony_ci# @ohos.enterprise.browser (Browser Management)
2e41f4b71Sopenharmony_ci
3e41f4b71Sopenharmony_ciThe **browser** module provides browser management, including setting, deleting, and obtaining browser policies.
4e41f4b71Sopenharmony_ci
5e41f4b71Sopenharmony_ci> **NOTE**
6e41f4b71Sopenharmony_ci>
7e41f4b71Sopenharmony_ci> - The initial APIs of this module are supported since API version 12. Newly added APIs will be marked with a superscript to indicate their earliest API version.
8e41f4b71Sopenharmony_ci>
9e41f4b71Sopenharmony_ci> - The APIs of this module can be used only in the stage model.
10e41f4b71Sopenharmony_ci>
11e41f4b71Sopenharmony_ci> - The APIs of this module can be called only by a [device administrator application](../../mdm/mdm-kit-guide.md#introduction) that is enabled.
12e41f4b71Sopenharmony_ci
13e41f4b71Sopenharmony_ci## Modules to Import
14e41f4b71Sopenharmony_ci
15e41f4b71Sopenharmony_ci```ts
16e41f4b71Sopenharmony_ciimport { browser } from '@kit.MDMKit';
17e41f4b71Sopenharmony_ci```
18e41f4b71Sopenharmony_ci
19e41f4b71Sopenharmony_ci## browser.setPolicySync
20e41f4b71Sopenharmony_ci
21e41f4b71Sopenharmony_cisetPolicySync(admin: Want, appId: string, policyName: string, policyValue: string): void
22e41f4b71Sopenharmony_ci
23e41f4b71Sopenharmony_ciSets a policy for a browser through the specified device administrator application.
24e41f4b71Sopenharmony_ci
25e41f4b71Sopenharmony_ci**Required permissions**: ohos.permission.ENTERPRISE_SET_BROWSER_POLICY
26e41f4b71Sopenharmony_ci
27e41f4b71Sopenharmony_ci**System capability**: SystemCapability.Customization.EnterpriseDeviceManager
28e41f4b71Sopenharmony_ci
29e41f4b71Sopenharmony_ci**Parameters**
30e41f4b71Sopenharmony_ci
31e41f4b71Sopenharmony_ci| Name     | Type                                                   | Mandatory| Description                                                        |
32e41f4b71Sopenharmony_ci| ----------- | ------------------------------------------------------- | ---- | ------------------------------------------------------------ |
33e41f4b71Sopenharmony_ci| admin       | [Want](../apis-ability-kit/js-apis-app-ability-want.md) | Yes  | Device administrator application.                                              |
34e41f4b71Sopenharmony_ci| appId       | string                                                  | Yes  | Application ID, which is used to specify the browser.                                    |
35e41f4b71Sopenharmony_ci| policyName  | string                                                  | Yes  | Name of the browser policy to set. If the value is an empty string, the browser policy corresponding to the application ID is set.|
36e41f4b71Sopenharmony_ci| policyValue | string                                                  | Yes  | Browser policy to set. If the value is an empty string, the policy corresponding to the policy name is removed.|
37e41f4b71Sopenharmony_ci
38e41f4b71Sopenharmony_ci**Error codes**
39e41f4b71Sopenharmony_ci
40e41f4b71Sopenharmony_ciFor details about the error codes, see [Enterprise Device Management Error Codes](errorcode-enterpriseDeviceManager.md) and [Universal Error Codes](../errorcode-universal.md).
41e41f4b71Sopenharmony_ci
42e41f4b71Sopenharmony_ci| ID| Error Message                                                    |
43e41f4b71Sopenharmony_ci| -------- | ------------------------------------------------------------ |
44e41f4b71Sopenharmony_ci| 9200001  | The application is not an administrator application of the device. |
45e41f4b71Sopenharmony_ci| 9200002  | The administrator application does not have permission to manage the device. |
46e41f4b71Sopenharmony_ci| 201      | Permission verification failed. The application does not have the permission required to call the API. |
47e41f4b71Sopenharmony_ci| 401      | Parameter error. Possible causes: 1. Mandatory parameters are left unspecified; 2. Incorrect parameter types; 3. Parameter verification failed. |
48e41f4b71Sopenharmony_ci
49e41f4b71Sopenharmony_ci**Example**
50e41f4b71Sopenharmony_ci
51e41f4b71Sopenharmony_ci```ts
52e41f4b71Sopenharmony_ciimport { Want } from '@kit.AbilityKit';
53e41f4b71Sopenharmony_cilet wantTemp: Want = {
54e41f4b71Sopenharmony_ci  bundleName: 'com.example.myapplication',
55e41f4b71Sopenharmony_ci  abilityName: 'EntryAbility',
56e41f4b71Sopenharmony_ci};
57e41f4b71Sopenharmony_cilet appId: string = 'com.example.myapplication';
58e41f4b71Sopenharmony_cilet policyName: string = 'InsecurePrivateNetworkRequestsAllowed';
59e41f4b71Sopenharmony_cilet policyValue: string = '{"level":"mandatory","scope":"machine","source":"platform","value":true}';
60e41f4b71Sopenharmony_ci
61e41f4b71Sopenharmony_citry {
62e41f4b71Sopenharmony_ci  browser.setPolicySync(wantTemp, appId, policyName, policyValue);
63e41f4b71Sopenharmony_ci  console.info('Succeeded in setting browser policies.');
64e41f4b71Sopenharmony_ci} catch (err) {
65e41f4b71Sopenharmony_ci  console.error(`Failed to set browser policies. Code is ${err.code}, message is ${err.message}`);
66e41f4b71Sopenharmony_ci}
67e41f4b71Sopenharmony_ci```
68e41f4b71Sopenharmony_ci
69e41f4b71Sopenharmony_ci## browser.getPoliciesSync
70e41f4b71Sopenharmony_ci
71e41f4b71Sopenharmony_cigetPoliciesSync(admin: Want, appId: string): string
72e41f4b71Sopenharmony_ci
73e41f4b71Sopenharmony_ciObtains the policies of a browser through the specified device administrator application.
74e41f4b71Sopenharmony_ci
75e41f4b71Sopenharmony_ci**System capability**: SystemCapability.Customization.EnterpriseDeviceManager
76e41f4b71Sopenharmony_ci
77e41f4b71Sopenharmony_ci
78e41f4b71Sopenharmony_ci**Parameters**
79e41f4b71Sopenharmony_ci
80e41f4b71Sopenharmony_ci| Name| Type                                                   | Mandatory| Description                    |
81e41f4b71Sopenharmony_ci| ------ | ------------------------------------------------------- | ---- | ------------------------ |
82e41f4b71Sopenharmony_ci| admin  | [Want](../apis-ability-kit/js-apis-app-ability-want.md) | Yes  | Device administrator application.          |
83e41f4b71Sopenharmony_ci| appId  | string                                                  | Yes  | Application ID, which is used to specify the browser.|
84e41f4b71Sopenharmony_ci
85e41f4b71Sopenharmony_ci**Return value**
86e41f4b71Sopenharmony_ci
87e41f4b71Sopenharmony_ci| Type  | Description        |
88e41f4b71Sopenharmony_ci| ------ | ------------ |
89e41f4b71Sopenharmony_ci| string | Browser policies obtained.|
90e41f4b71Sopenharmony_ci
91e41f4b71Sopenharmony_ci**Error codes**
92e41f4b71Sopenharmony_ci
93e41f4b71Sopenharmony_ciFor details about the error codes, see [Enterprise Device Management Error Codes](errorcode-enterpriseDeviceManager.md) and [Universal Error Codes](../errorcode-universal.md).
94e41f4b71Sopenharmony_ci
95e41f4b71Sopenharmony_ci| ID| Error Message                                                    |
96e41f4b71Sopenharmony_ci| -------- | ------------------------------------------------------------ |
97e41f4b71Sopenharmony_ci| 9200001  | The application is not an administrator application of the device. |
98e41f4b71Sopenharmony_ci| 401      | Parameter error. Possible causes: 1. Mandatory parameters are left unspecified; 2. Incorrect parameter types; 3. Parameter verification failed. |
99e41f4b71Sopenharmony_ci
100e41f4b71Sopenharmony_ci**Example**
101e41f4b71Sopenharmony_ci
102e41f4b71Sopenharmony_ci```ts
103e41f4b71Sopenharmony_ciimport { Want } from '@kit.AbilityKit';
104e41f4b71Sopenharmony_cilet wantTemp: Want = {
105e41f4b71Sopenharmony_ci  bundleName: 'com.example.myapplication',
106e41f4b71Sopenharmony_ci  abilityName: 'EntryAbility',
107e41f4b71Sopenharmony_ci};
108e41f4b71Sopenharmony_cilet appId: string = 'com.example.myapplication';
109e41f4b71Sopenharmony_ci
110e41f4b71Sopenharmony_citry {
111e41f4b71Sopenharmony_ci  let result: string = browser.getPoliciesSync(wantTemp, appId);
112e41f4b71Sopenharmony_ci  console.info(`Succeeded in getting browser policies, result : ${JSON.stringify(result)}`);
113e41f4b71Sopenharmony_ci} catch(err) {
114e41f4b71Sopenharmony_ci  console.error(`Failed to get browser policies. Code is ${err.code}, message is ${err.message}`);
115e41f4b71Sopenharmony_ci}
116e41f4b71Sopenharmony_ci```
117