加入转发视频功能

This commit is contained in:
liuwei
2025-06-13 15:05:36 +08:00
parent 09b5e20d28
commit 7f12e531f6
2 changed files with 10 additions and 1 deletions

View File

@@ -694,7 +694,7 @@ class MessageMixin(WechatAPIClientBase):
async with aiohttp.ClientSession() as session:
json_param = {"Wxid": self.wxid, "ToWxid": wxid, "Content": xml}
response = await session.post(f'http://{self.ip}:{self.port}/SendCDNVideoMsg', json=json_param)
response = await session.post(f'http://{self.ip}:{self.port}/Msg/SendCDNVideo', json=json_param)
json_resp = await response.json()
if json_resp.get("Success"):