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

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

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 如何按照地理位置排序?
2658浏览 • 1回复 待解决
如何在har中获取hap中置信息
193浏览 • 1回复 待解决
ArkTS获取组件位置和大小接口
3212浏览 • 1回复 待解决
app.getInfo获取应用配置信息为空。
598浏览 • 1回复 待解决
应用通过什么接口获取设备标识信息
1618浏览 • 1回复 待解决
HarmonyOS napi 接口线程安全咨询
263浏览 • 1回复 待解决
如何实现页面加载前从接口获取数据
2339浏览 • 1回复 待解决
HarmonyOS 如何获取组件位置
165浏览 • 1回复 待解决