运维中心 /getFeedbackmedia # operation.getFeedbackmedia > 本接口应在服务器端调用,详细说明参见[服务端API](https://developers.weixin.qq.com/miniprogram/dev/framework/server-ability/backend-api.html)。 > 本接口支持[云调用](https://developers.weixin.qq.com/miniprogram/dev/wxcloud/guide/openapi/openapi.html)。需开发者工具版本 >= `1.02.1904090`(最新[稳定版下载](https://developers.weixin.qq.com/miniprogram/dev/devtools/stable.html)),`wx-server-sdk` >= `0.4.0` 获取 mediaId 图片 调用方式: - [HTTPS 调用](https://developers.weixin.qq.com/miniprogram/dev/api-backend/open-api/operation/operation.getFeedbackmedia.html#method-http) - [云调用](https://developers.weixin.qq.com/miniprogram/dev/api-backend/open-api/operation/operation.getFeedbackmedia.html#method-cloud) ## HTTPS 调用 ### 请求地址 ```text GET https://api.weixin.qq.com/cgi-bin/media/getfeedbackmedia?access_token=ACCESS_TOKEN ``` ### 请求参数 | 属性 | 类型 | 默认值 | 必填 | 说明 | | :------------------------------------ | :----- | :----- | :--- | :----------------------------------------------------------- | | access_token / cloudbase_access_token | string | | 是 | [接口调用凭证](https://developers.weixin.qq.com/miniprogram/dev/api-backend/open-api/access-token/auth.getAccessToken.html) | | record_id | number | | 是 | 用户反馈信息的 record_id, 可通过 getFeedback 获取 | | media_id | string | | 是 | 图片的 mediaId | ### 请求示例 https://api.weixin.qq.com/cgi-bin/media/getfeedbackmedia?record_id=xxx&media_id=xx&access_token=xx ### 返回图片实体 ## 云调用 > [云调用](https://developers.weixin.qq.com/miniprogram/dev/wxcloud/guide/openapi/openapi.html)是微信云开发提供的在云函数中调用微信开放接口的能力,需要在云函数中通过 `wx-server-sdk` 使用。 ### 接口方法 ```js openapi.operation.getFeedbackmedia ``` > 需在 `config.json` 中配置 `operation.getFeedbackmedia` API 的权限,[详情](https://developers.weixin.qq.com/miniprogram/dev/wxcloud/guide/openapi/openapi.html#usage-3) ### 请求参数 | 属性 | 类型 | 默认值 | 必填 | 说明 | | :------- | :----- | :----- | :--- | :------------------------------------------------ | | recordId | number | | 是 | 用户反馈信息的 record_id, 可通过 getFeedback 获取 | | mediaId | string | | 是 | 图片的 mediaId | ### 请求示例 ```js const cloud = require('wx-server-sdk') cloud.init({ env: cloud.DYNAMIC_CURRENT_ENV, }) exports.main = async (event, context) => { try { const result = await cloud.openapi.operation.getFeedbackmedia({ "recordId": '', "mediaId": '' }) return result } catch (err) { return err } } ``` ### 请求示例 https://api.weixin.qq.com/cgi-bin/media/getfeedbackmedia?record_id=xxx&media_id=xx&access_token=xx