chooseMessageFile:fail api scope is not declared in the privacy agreement
时间: 2023-11-17 12:01:40 浏览: 148
codeblocks中报错:'to_string' was not declared in this scope解决方案
5星 · 资源好评率100%
根据提供的引用内容,可以得知该问题是因为API权限未被授权所导致的。在使用chooseMessageFile API时,需要在app.json文件中配置相应的权限。请按照以下步骤进行操作:
1. 打开app.json文件。
2. 在permission字段中添加以下内容:
```
"scope.chooseMessageFile": {
"desc": "获取文件"
}
```
3. 在requiredPrivateInfos字段中添加以下内容:
```
"chooseMessageFile"
```
4. 保存文件并重新编译运行程序。
阅读全文