获取图文分享转发分时数据 详情请参考 http://mp.weixin.qq.com/wiki/8/c0453610fb5131d1fcb17b4e87c82050.html :param begin_date: 起始日期 :param end_date: 结束日期 :return: 统计数据列表
(self, begin_date, end_date)
| 200 | return res |
| 201 | |
| 202 | def get_user_share_hour(self, begin_date, end_date): |
| 203 | """ |
| 204 | 获取图文分享转发分时数据 |
| 205 | 详情请参考 |
| 206 | http://mp.weixin.qq.com/wiki/8/c0453610fb5131d1fcb17b4e87c82050.html |
| 207 | |
| 208 | :param begin_date: 起始日期 |
| 209 | :param end_date: 结束日期 |
| 210 | :return: 统计数据列表 |
| 211 | """ |
| 212 | res = self._post( |
| 213 | 'getusersharehour', |
| 214 | data={ |
| 215 | 'begin_date': self._to_date_str(begin_date), |
| 216 | 'end_date': self._to_date_str(end_date) |
| 217 | }, |
| 218 | result_processor=lambda x: x['list'] |
| 219 | ) |
| 220 | return res |
| 221 | |
| 222 | def get_upstream_msg(self, begin_date, end_date): |
| 223 | """ |