callmez\wechat\sdk\Wechat::sendMusic PHP Method

sendMusic() public method

发送音乐客服消息
public sendMusic ( $openId, $thumbMediaId, $musicUrl, $hqMusicUrl, null $title = null, null $description = null ) : boolean
$openId 关注者openID
$thumbMediaId 缩略图的媒体ID
$musicUrl 音乐链接
$hqMusicUrl 高品质音乐链接,wifi环境优先使用该链接播放音乐
$title null 音乐标题
$description null 音乐描述
return boolean
    public function sendMusic($openId, $thumbMediaId, $musicUrl, $hqMusicUrl, $title = null, $description = null)
    {
        return $this->sendCustomMessage(['touser' => $openId, 'msgtype' => 'music', 'music' => ['thumb_media_id' => $thumbMediaId, 'musicurl' => $musicUrl, 'hqMusicUrl' => $hqMusicUrl, 'title' => $title, 'description' => $description]]);
    }
Wechat