获取公众号已创建的标签 :return: 所有标签列表
(self)
| 23 | ) |
| 24 | |
| 25 | def get(self): |
| 26 | """ |
| 27 | 获取公众号已创建的标签 |
| 28 | |
| 29 | :return: 所有标签列表 |
| 30 | |
| 31 | """ |
| 32 | |
| 33 | res = self._get( |
| 34 | 'tags/get', |
| 35 | result_processor=lambda x: x['tags'] |
| 36 | ) |
| 37 | |
| 38 | return res |
| 39 | |
| 40 | def update(self, tag_id, name): |
| 41 | """ |
no test coverage detected