# 获取接口列表
从2022年4月18日开始,部分小程序前端api需申请后,方可使用。该接口用于获取“需申请并审核通过”后才可使用的接口列表。
使用过程中如遇到问题,可在开放平台服务商专区发帖交流。
# 请求地址
GET https://api.weixin.qq.com/wxa/security/get_privacy_interface?access_token=ACCESS_TOKEN
# 请求参数说明
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
access_token | string | 是 | 第三方平台接口调用令牌authorizer_access_token |
# 请求示例
GET https://api.weixin.qq.com/wxa/security/get_privacy_interface?access_token=ACCESS_TOKEN
# 返回参数说明
参数 | 类型 | 说明 |
---|---|---|
errcode | int32 | 返回码 |
errmsg | string | 返回码信息 |
interface_list | Object Array | 隐私接口 |
# interface_list结构体
参数 | 类型 | 说明 |
---|---|---|
api_name | string | api 英文名 |
api_ch_name | string | api 中文名 |
api_desc | string | api描述 |
apply_time | uint32 | 申请时间 ,该字段发起申请后才会有 |
status | uint32 | 接口状态,该字段发起申请后才会有 |
audit_id | uint32 | 申请单号,该字段发起申请后才会有 |
fail_reason | string | 申请被驳回原因或者无权限,该字段申请驳回时才会有 |
api_link | string | api文档链接 |
group_name | string | 分组名 |
# status状态说明
状态码 | 说明 |
---|---|
1 | 待申请开通 |
2 | 无权限 |
3 | 申请中 |
4 | 申请失败 |
5 | 已开通 |
# 返回结果示例
{
"errcode": 0,
"errmsg": "ok",
"interface_list": [
{
"api_name": "wx.chooseAddress",
"api_ch_name": "获取用户收货地址",
"api_desc": "调起用户编辑收货地址原生界面,并在编辑完成后返回用户选择的地址。",
"status": 1,
"api_link": "https://developers.weixin.qq.com/miniprogram/dev/api/open-api/address/wx.chooseAddress.html",
"group_name": "地理位置"
},
{
"api_name": "wx.choosePoi",
"api_ch_name": "选择位置,支持模糊定位(精确到市)和精确定位混选",
"api_desc": "选择位置,支持模糊定位和精确定位混选",
"status": 4,
"audit_id": 421610267,
"fail_reason": "小程序内未含有相应使用场景",
"api_link": "https://developers.weixin.qq.com/miniprogram/dev/api/location/wx.choosePoi.html",
"group_name": "地理位置"
},
{
"api_name": "wx.getLocation",
"api_ch_name": "获取当前的地理位置、速度 ",
"api_desc": "获取当前的地理位置、速度。当用户离开小程序后,此接口无法调用。 ",
"status": 1,
"api_link": "https://developers.weixin.qq.com/miniprogram/dev/api/location/wx.getLocation.html ",
"group_name": "地理位置"
},
{
"api_name": "wx.onLocationChange",
"api_ch_name": "监听实时地理位置变化事件",
"api_desc": "监听实时地理位置变化事件。当用户离开小程序后,此接口无法调用。",
"status": 1,
"api_link": "https://developers.weixin.qq.com/miniprogram/dev/api/location/wx.onLocationChange.html",
"group_name": "地理位置"
},
{
"api_name": "wx.chooseLocation",
"api_ch_name": "打开地图选择位置",
"api_desc": "打开地图选择位置。",
"status": 1,
"api_link": "https://developers.weixin.qq.com/miniprogram/dev/api/location/wx.chooseLocation.html",
"group_name": "地理位置"
}
]
}
# 返回码说明
返回码 | errmsg | 说明 |
---|---|---|
0 | ok | 查询成功 |
61031 | our last submission is under review, please do not apply again | 审核中,请不要重复申请 |
其他错误码 | 请查看全局错误码 |