如何申请网络权限:
申请访问权限文档https://developer.harmonyos.com/cn/docs/documentation/doc-guides-V3/accesstoken-guidelines-0000001493744016-V3
可以在网站看到那些是需要用户授权才需要填写的属性,由于网络权限是系统授权(system-grand),所以很多可以不需要填写
首先在moudule.json5文件中声明
{
"module" : {
// ...
"requestPermissions":[ //requestPermissions请求权限:一个数组的格式
{
"name" : "ohos.permission.PERMISSION1", ------------权限名称,选择申请声明权限,只有名字是必填的
"reason": "$string:reason",-------------------------权限申请原因,
"usedScene": {---------------------------------------权限使用场景,在后台使用还是在前台运行中使用
"abilities": [
"FormAbility"
],
"when":"inuse"
}
}
]
}
}
鸿蒙APP开发如何申请网络权限
于 2024-03-02 15:56:20 首次发布