-
开发大大你好,目前框架貌似只能直接回复发送者的消息,请问会考虑转发消息吗,比如我想把群内的闪图转发到我的个人qq号上? |
Beta Was this translation helpful? Give feedback.
Answered by
Yukari316
Feb 27, 2021
Replies: 1 comment 6 replies
-
转发的功能是需要你自己去编写逻辑的,框架只会提供访问 如果是想要转发闪照,由于闪照无法获取图片url,只能使用缓存文件转发 var img = eventArgs.Message.GetAllImage();
await eventArgs.SourceGroup.SendGroupMessage(CQCode.CQImage(img[0].ImgFile)); 这只是简单的示例,实际的业务逻辑需要你自己去完成(毕竟我也不知道你们要拿来干什么.jpg |
Beta Was this translation helpful? Give feedback.
6 replies
Answer selected by
Yukari316
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
转发的功能是需要你自己去编写逻辑的,框架只会提供访问
go-cqhttp
的API接口如果是想要转发闪照,由于闪照无法获取图片url,只能使用缓存文件转发
参考以下代码:
这只是简单的示例,实际的业务逻辑需要你自己去完成(毕竟我也不知道你们要拿来干什么.jpg