获取安全地理位置信息接口的实现

获取安全地理位置信息接口的实现

HarmonyOS
2024-08-07 09:36:32
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
智体美劳全发展
public async getVerifiedSecureLocation(priority: trustedAppService.LocatingPriority): Promise<string> {
  try {
    await this.initSecureLocationAttestContext();
    const secureLocation = await trustedAppService.getCurrentSecureLocation(this.timeout, priority);
    /**
     * The best practice is to complete the secure location verification on the server.
     * The reference code is provided here.
     */
    await this.verifySecureLocation(secureLocation);
    return JSON.stringify(secureLocation.originalLocation);
  } catch (err) {
    throw new Error((err as BusinessError).message);
  }
}
分享
微博
QQ
微信
回复
2024-08-07 11:58:48
相关问题
MySQL 如何按照地理位置排序?
2623浏览 • 1回复 待解决
如何在har中获取hap中置信息
116浏览 • 1回复 待解决
ArkTS获取组件位置和大小接口
3128浏览 • 1回复 待解决
app.getInfo获取应用配置信息为空。
555浏览 • 1回复 待解决
应用通过什么接口获取设备标识信息
1586浏览 • 1回复 待解决
HarmonyOS napi 接口线程安全咨询
210浏览 • 1回复 待解决
HarmonyOS 如何获取组件位置
130浏览 • 1回复 待解决
安全检测Device Security Kit实现
392浏览 • 1回复 待解决