Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy

WeChat Small Program Operations Center getFeedback


May 20, 2021 WeChat Mini Program Development Document



operation.getFeedback

This interface should be called on the server side, as detailed in the Service Side API.

Get a list of user feedback

The request address

GET https://api.weixin.qq.com/wxaapi/feedback/list?access_token=ACCESS_TOKEN

Request parameters

Property Type The default Required Description
access_token string Is The interface calls the credentials
type number Whether The type of feedback, the default pull all types, the detailed definition can be found below
page number Is The number of pages pedded, starting at 1
Num number Is The number of pages pulled

An example of a request

{
  "page":1,
  "num":10
}

The returned JSON packet

Property Type Description
errcode number Error code
errmsg string The error message
list Array.<Object> A list of feedbacks
total_num number The total number of bars

The definition of feedback type type type

Value Description
1 The small program could not be opened
2 The small program flashes back
3 Cotton
4 Black screen white screen
5 Crash
6 The interface is misplaced
7 The interface loads slowly
8 Other exceptions

An example response

{
  "list": [
      {
          "record_id": 1,
          "create_time": 1587571200,
          "content": "白屏了",
          "phone": 18800000000,
          "openid": "openidxxxxxx",
          "nickname": "反馈用户昵称",
          "head_url": "反馈用户头像",
          "type": 1,
          "systemInfo": "{}"
      }
  ],
  "total_num": 100,
  "errcode": 0
}