12345678910111213141516171819202122232425262728293031 |
- <?php
- /**
- * Created by PhpStorm.
- * User: admin
- * Date: 2019/10/6
- * Time: 18:40
- */
- namespace wx\offiaccount\msg;
- use wx\Base;
- class CustomService extends Base
- {
- /**
- * 修改客服帐号
- * @param $token
- * @param $data
- * @return mixed|null
- */
- public function updateKfaccount($token,$data){
- $url = 'https://api.weixin.qq.com/customservice/kfaccount/update?access_token='.$token;
- return$this->curl($url,$data);
- }
- public function messageSend($token, $data){
- $url = 'https://api.weixin.qq.com/customservice/kfaccount/update?access_token='.$token;
- return$this->curl($url,$data);
- }
- }
|