OAID Service
When to Use
An Open Anonymous Device Identifier (OAID) is a non-permanent device identifier. The OAID service is useful for media application developers, ad platforms, and tracking platforms alike. Specifically, it provides personalized ads for users while protecting their personal data privacy, and also interact with third-party tracking platforms to provide conversion attribution analysis for advertisers.
Available APIs
API | Description |
---|---|
getOAID():Promise<string> | Obtains an OAID. This API uses a promise to return the result. |
getOAID(callback: AsyncCallback<string>): void | Obtains an OAID. This API uses an asynchronous callback to return the result. |
How to Develop
-
In the module.json5 file of the module, configure the ohos.permission.APP_TRACKING_CONSENT permission. The sample code is as follows:
{ "module": { "requestPermissions": [ { "name": "ohos.permission.APP_TRACKING_CONSENT" } ] } }
-
Request authorization from the user in a dialog box when the application is started. For details about how to obtain the context, see Context. The sample code is as follows:
import abilityAccessCtrl from '@ohos.abilityAccessCtrl'; import { BusinessError } from '@ohos.base'; import hilog from '@ohos.hilog'; import common from '@ohos.app.ability.common'; function requestOAIDTrackingConsentPermissions(context: common.Context): void { // Display a dialog box when the page is displayed to request the user to grant the ad tracking permission. const atManager: abilityAccessCtrl.AtManager = abilityAccessCtrl.createAtManager(); try { atManager.requestPermissionsFromUser(context, ["ohos.permission.APP_TRACKING_CONSENT"]).then((data) => { if (data.authResults[0] == 0) { hilog.info(0x0000, 'testTag', '%{public}s', 'request permission success'); } else { hilog.info(0x0000, 'testTag', '%{public}s', 'user rejected'); } }).catch((err: BusinessError) => { hilog.error(0x0000, 'testTag', '%{public}s', `request permission failed, error: ${err.code} ${err.message}`); }) } catch(err) { hilog.error(0x0000, 'testTag', '%{public}s', `catch err->${err.code}, ${err.message}`); } }
-
Call getOAID() to obtain OAID information. The sample code is as follows:
import identifier from '@ohos.identifier.oaid'; import hilog from '@ohos.hilog'; import { BusinessError } from '@ohos.base'; try { identifier.getOAID((err: BusinessError, data: string) => { if (err.code) { hilog.error(0x0000, 'testTag', '%{public}s', `get oaid failed, error: ${err.code} ${err.message}`); } else { const oaid: string = data; hilog.info(0x0000, 'testTag', '%{public}s', `get oaid by callback success, oaid: ${oaid}`); } }); } catch (err) { hilog.error(0x0000, 'testTag', '%{public}s', `get oaid catch error: ${err.code} ${err.message}`); }